/* ============================================
   ARISTOTLE TECHNOLOGIES — Design System
   ============================================ */

:root {
   --bg-primary: #ffffff;
   --bg-secondary: #f7f7f8;
   --bg-card: #FFFFFF;
   --bg-elevated: #f9f9fa;
   --accent: #C91A89;
   --accent-soft: #e388c2;
   --accent-dim: #b51279;
   --accent-glow: rgba(219, 24, 147, 0.08);
   --accent-glow-strong: rgba(219, 24, 147, 0.14);
   --text-primary: #1A1525;
   --text-secondary: #6B6478;
   --text-muted: #9E96AB;
   --border: rgba(0, 0, 0, 0.06);
   --border-accent: rgba(219, 24, 147, 0.18);
   --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
   --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
   --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
   --font-display: 'DM Serif Display', serif;
   --font-body: 'Outfit', sans-serif;
   --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: var(--font-body);
   background: var(--bg-primary);
   color: var(--text-primary);
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
   line-height: 1.6;
}

a {
   color: inherit;
   text-decoration: none;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

ul {
   list-style: none;
}

/* Noise overlay — disabled for clean look */


/* ============================================
   NAVIGATION
   ============================================ */

nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 1rem 3rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   backdrop-filter: blur(20px);
   background: rgba(255, 255, 255, 0.85);
   border-bottom: 1px solid var(--border);
}

.nav-logo {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.nav-logo-img {
   width: 52px;
   height: 52px;
   object-fit: contain;
}



.nav-links {
   display: flex;
   align-items: center;
   gap: 2.5rem;
}

.nav-links a {
   color: var(--text-secondary);
   font-size: 0.9rem;
   font-weight: 400;
   transition: color 0.2s;
}

.nav-links a:hover {
   color: var(--text-primary);
}

.nav-links a.active {
   color: var(--text-primary);
   font-weight: 500;
}

/* Dropdown */
.nav-dropdown {
   position: relative;
}

.nav-dropdown-toggle {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   cursor: pointer;
}

.nav-chevron {
   font-size: 0.6rem;
   transition: transform 0.2s ease;
   display: inline-block;
}

.nav-dropdown:hover .nav-chevron {
   transform: rotate(180deg);
}

.nav-dropdown-menu {
   position: absolute;
   top: calc(100% + 0.75rem);
   left: 50%;
   transform: translateX(-50%);
   min-width: 200px;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 0.5rem;
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
   transform: translateX(-50%) translateY(8px);
   z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
   list-style: none;
}

.nav-dropdown-menu a {
   display: block;
   padding: 0.6rem 1rem;
   font-size: 0.88rem;
   color: var(--text-secondary);
   border-radius: 8px;
   transition: all 0.15s ease;
   white-space: nowrap;
}

.nav-dropdown-menu a:hover {
   background: var(--accent-glow);
   color: var(--accent);
}

.nav-cta {
   padding: 0.6rem 1.5rem;
   background: var(--accent);
   color: #fff !important;
   border-radius: 100px;
   font-weight: 600 !important;
   font-size: 0.85rem !important;
   transition: all 0.25s ease !important;
   box-shadow: 0 4px 14px rgba(219, 24, 147, 0.25);
}

.nav-cta:hover {
   background: var(--accent-dim) !important;
   transform: translateY(-1px);
   box-shadow: 0 8px 30px rgba(219, 24, 147, 0.35);
}

.nav-toggle {
   display: none;
   background: none;
   border: none;
   width: 32px;
   height: 32px;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   padding: 0;
   cursor: pointer;
}

.nav-toggle span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--text-primary);
   border-radius: 2px;
   transition: all 0.3s ease;
}


/* ============================================
   SHARED ELEMENTS
   ============================================ */

.container {
   max-width: 1200px;
   margin: 0 auto;
}

.section-label {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   font-family: var(--font-mono);
   font-size: 0.75rem;
   color: var(--accent);
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 1.25rem;
}

.section-label::before {
   content: '';
   width: 24px;
   height: 2px;
   background: linear-gradient(90deg, var(--accent), var(--accent-soft));
   border-radius: 2px;
}

.section-title {
   font-family: var(--font-display);
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 400;
   line-height: 1.15;
   letter-spacing: -0.02em;
   margin-bottom: 1rem;
}

.section-title em {
   color: var(--accent);
   font-style: italic;
}

.section-subtitle {
   font-size: 1.05rem;
   color: var(--text-secondary);
   max-width: 600px;
   line-height: 1.7;
   font-weight: 300;
   margin-bottom: 3.5rem;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.9rem 2rem;
   background: var(--accent);
   color: #fff !important;
   border: none;
   border-radius: 100px;
   font-family: var(--font-body);
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   transition: all 0.25s ease;
   box-shadow: 0 6px 20px rgba(219, 24, 147, 0.25);
}

.btn-primary:hover {
   background: var(--accent-dim);
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(219, 24, 147, 0.35);
}

.btn-secondary {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.9rem 2rem;
   background: transparent;
   color: var(--text-primary) !important;
   border: 1px solid var(--border);
   border-radius: 100px;
   font-family: var(--font-body);
   font-weight: 500;
   font-size: 0.95rem;
   cursor: pointer;
   transition: all 0.25s ease;
}

.btn-secondary:hover {
   border-color: var(--border-accent);
   background: var(--accent-glow);
}


/* ============================================
   HOMEPAGE — Hero
   ============================================ */

.hero {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 8rem 3rem 4rem;
   position: relative;
   overflow: hidden;
}

.hero-video {
   position: absolute;
   inset: 0;
   z-index: 0;
   overflow: hidden;
}

.hero-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hero-video-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.65) 100%);
   z-index: 1;
}

.hero-content {
   max-width: 900px;
   position: relative;
   z-index: 2;
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.45rem 1rem;
   background: var(--accent-glow);
   border: 1px solid var(--border-accent);
   border-radius: 100px;
   font-family: var(--font-mono);
   font-size: 0.75rem;
   color: var(--accent);
   margin-bottom: 2rem;
   letter-spacing: 0.04em;
   animation: fadeUp 0.8s ease-out both;
}

.hero-badge::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--accent);
   animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: .3
   }
}

@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(24px)
   }

   to {
      opacity: 1;
      transform: translateY(0)
   }
}

.hero h1 {
   font-family: var(--font-display);
   font-size: clamp(3rem, 6.5vw, 5.5rem);
   font-weight: 400;
   line-height: 1.05;
   letter-spacing: -0.02em;
   margin-bottom: 1.75rem;
   animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero h1 em {
   font-style: italic;
   color: var(--accent);
}

.hero-sub {
   font-size: 1.2rem;
   line-height: 1.7;
   color: var(--text-secondary);
   max-width: 560px;
   margin-bottom: 2.5rem;
   font-weight: 300;
   animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-actions {
   display: flex;
   align-items: center;
   gap: 1.25rem;
   animation: fadeUp 0.8s ease-out 0.3s both;
   flex-wrap: wrap;
}


/* ============================================
   HOMEPAGE — About
   ============================================ */

.about {
   background: var(--bg-primary);
   padding-top: 8rem;
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
}

.about-visual {
   position: relative;
   overflow: hidden;
   background: #0a0a0a;
   aspect-ratio: 16/9;
}

.about-visual video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about-visual-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about-text h2 {
   font-family: var(--font-display);
   font-size: clamp(1.8rem, 3.5vw, 2.5rem);
   line-height: 1.18;
   margin-bottom: 1.5rem;
}

.about-text h2 em {
   color: var(--accent);
   font-style: italic;
}

.about-text p {
   color: var(--text-secondary);
   line-height: 1.8;
   font-weight: 300;
   margin-bottom: 1rem;
   font-size: 1rem;
}


/* ============================================
   HOMEPAGE — Features
   ============================================ */

section {
   padding: 7rem 3rem;
   position: relative;
}

.features {
   max-width: 1200px;
   margin: 0 auto;
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.features-grid--2col {
   grid-template-columns: repeat(2, 1fr);
}

.feature-card {
   padding: 2.25rem;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   transition: all .35s ease;
   position: relative;
   overflow: hidden;
   box-shadow: var(--shadow-sm);
}

.feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--accent), var(--accent-soft));
   border-radius: 3px 3px 0 0;
   opacity: 0;
   transition: opacity .35s ease;
}

.feature-card:hover {
   border-color: var(--border-accent);
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
   opacity: 1;
}

.feature-icon {
   width: 52px;
   height: 52px;
   border-radius: 14px;
   background: var(--accent-glow);
   border: 1px solid var(--border-accent);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.5rem;
   font-size: 1.4rem;
}

.feature-card h3 {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: .75rem;
   letter-spacing: -.01em;
}

.feature-card p {
   color: var(--text-secondary);
   font-size: .9rem;
   line-height: 1.7;
   font-weight: 300;
}


/* ============================================
   HOMEPAGE — Benefits (numbered list)
   ============================================ */

.benefits-home {
   background: var(--bg-secondary);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.benefits-inner {
   max-width: 1200px;
   margin: 0 auto;
}

.benefit-item {
   display: grid;
   grid-template-columns: 80px 1fr;
   gap: 2.5rem;
   padding: 2.5rem 0;
   border-bottom: 1px solid var(--border);
   align-items: start;
   transition: all .3s ease;
}

.benefit-item:last-child {
   border-bottom: none;
}

.benefit-item:hover {
   padding-left: 1rem;
}

.benefit-num-home {
   font-family: var(--font-display);
   font-size: 3rem;
   color: var(--accent);
   opacity: .25;
   line-height: 1;
   transition: opacity .3s ease;
}

.benefit-item:hover .benefit-num-home {
   opacity: .55;
}

.benefit-content h3 {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: .6rem;
}

.benefit-content p {
   color: var(--text-secondary);
   font-size: .95rem;
   line-height: 1.7;
   font-weight: 300;
   max-width: 600px;
}


/* ============================================
   HOMEPAGE — Sectors
   ============================================ */

.sectors {
   max-width: 1200px;
   margin: 0 auto;
}

.sectors-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
}

.sector-card {
   padding: 3rem;
   border-radius: 24px;
   border: 1px solid var(--border);
   background: var(--bg-card);
   position: relative;
   overflow: hidden;
   transition: all .35s ease;
   box-shadow: var(--shadow-sm);
}

.sector-card:hover {
   border-color: var(--border-accent);
   background: rgba(219, 24, 147, 0.06);
   box-shadow: 0 0 20px rgba(219, 24, 147, 0.08);
}

.sector-emoji {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
   display: block;
}

.sector-card h3 {
   font-family: var(--font-display);
   font-size: 1.75rem;
   margin-bottom: .75rem;
   position: relative;
   z-index: 1;
}

.sector-card p {
   color: var(--text-secondary);
   line-height: 1.7;
   font-weight: 300;
   margin-bottom: 1.75rem;
   font-size: .95rem;
   position: relative;
   z-index: 1;
}

.sector-link {
   color: var(--accent);
   font-weight: 500;
   font-size: .9rem;
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   position: relative;
   z-index: 1;
   transition: gap .2s ease;
}

.sector-link:hover {
   gap: .75rem;
}


/* ============================================
   HOMEPAGE — Testimonials
   ============================================ */

.testimonials-section {
   background: var(--bg-secondary);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.testimonials {
   max-width: 1200px;
   margin: 0 auto;
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
}

.testimonial-card {
   padding: 2.5rem;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   transition: all .3s ease;
   box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
   border-color: rgba(0, 0, 0, .08);
   transform: translateY(-3px);
   box-shadow: var(--shadow-md);
}

.testimonial-quote {
   font-size: 1.05rem;
   line-height: 1.75;
   font-weight: 300;
   margin-bottom: 2rem;
   font-style: italic;
   opacity: .85;
}

.testimonial-quote::before {
   content: '\201C';
   font-family: var(--font-display);
   font-size: 3rem;
   color: var(--accent);
   opacity: .3;
   line-height: 0;
   display: block;
   margin-bottom: .75rem;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.testimonial-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 1px solid var(--border-accent);
   object-fit: cover;
}

.testimonial-name {
   font-weight: 600;
   font-size: .9rem;
   margin-bottom: .3rem;
}

.testimonial-role {
   font-size: .8rem;
   color: var(--text-muted);
}


/* ============================================
   HOMEPAGE — Partners
   ============================================ */

.partners {
   background: var(--bg-primary);
   text-align: left;
}

.partners-inner {
   max-width: 1200px;
   margin: 0 auto;
}

.partners-split {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   margin-top: 3rem;
   text-align: left;
}

.partners-group {
   background: var(--bg-secondary);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 2.5rem;
}

.partners-group-title {
   font-family: var(--font-display);
   font-size: 1.4rem;
   margin-bottom: 0.5rem;
}

.partners-group-desc {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.partners-logos {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
}

.partner-logo {
   font-family: var(--font-body);
   font-weight: 500;
   font-size: 0.88rem;
   color: var(--text-muted);
   padding: 0.75rem 1.5rem;
   background: var(--bg-secondary);
   border: 1px solid var(--border);
   border-radius: 100px;
   transition: all .3s ease;
}

.partner-logo:hover {
   color: var(--accent);
   border-color: var(--border-accent);
   background: var(--accent-glow);
}


/* ============================================
   HOMEPAGE — FAQ
   ============================================ */

.faq {
   max-width: 1200px;
   margin: 0 auto;
   text-align: left;
}

.faq-item {
   border-bottom: 1px solid var(--border);
   overflow: hidden;
}

.faq-question {
   width: 100%;
   background: none;
   border: none;
   padding: 1.75rem 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   font-family: var(--font-body);
   font-size: 1.05rem;
   font-weight: 500;
   color: var(--text-primary);
   text-align: left;
   transition: color .2s;
}

.faq-question:hover {
   color: var(--accent);
}

.faq-icon {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   border: 1.5px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   color: var(--text-muted);
   transition: all .3s ease;
   flex-shrink: 0;
   margin-left: 1rem;
   background: var(--bg-card);
}

.faq-item.active .faq-icon {
   transform: rotate(45deg);
   border-color: var(--accent);
   color: #fff;
   background: var(--accent);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
   max-height: 300px;
   padding-bottom: 1.75rem;
}

.faq-answer p {
   color: var(--text-secondary);
   line-height: 1.75;
   font-weight: 300;
   font-size: .95rem;
}


/* ============================================
   SHARED — CTA Section
   ============================================ */

.cta-section {
   text-align: center;
   padding: 8rem 3rem;
   position: relative;
   overflow: hidden;
   background: linear-gradient(135deg, rgba(219, 24, 147, 0.08) 0%, var(--bg-secondary) 50%, rgba(219, 24, 147, 0.05) 100%);
}

.cta-inner {
   max-width: 700px;
   margin: 0 auto;
   padding: 4rem;
   background: var(--bg-card);
   border-radius: 28px;
   border: 1px solid var(--border-accent);
   box-shadow: 0 0 60px rgba(219, 24, 147, 0.1);
   position: relative;
   z-index: 1;
}

.cta-inner h2 {
   font-family: var(--font-display);
   font-size: clamp(2rem, 4vw, 2.8rem);
   margin-bottom: 1rem;
}

.cta-inner h2 em {
   color: var(--accent);
   font-style: italic;
}

.cta-inner p {
   color: var(--text-secondary);
   font-size: 1.05rem;
   margin-bottom: 2rem;
   font-weight: 300;
}

.cta-inner .btn-primary {
   padding: 1rem 2.5rem;
   font-size: 1.05rem;
}


/* ============================================
   SHARED — Footer
   ============================================ */

footer {
   padding: 4rem 3rem 2rem;
   border-top: 1px solid var(--border);
   background: var(--bg-primary);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 3rem;
   max-width: 1200px;
   margin: 0 auto 3rem;
}

.footer-logo-img {
   width: 180px;
   height: auto;
}

.footer-brand p {
   color: var(--text-secondary);
   font-size: .9rem;
   line-height: 1.7;
   font-weight: 300;
   margin-top: 1rem;
   max-width: 300px;
}

.footer-col h4 {
   font-size: .8rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: .08em;
   color: var(--text-muted);
   margin-bottom: 1.25rem;
}

.footer-col a {
   display: block;
   color: var(--text-secondary);
   font-size: .9rem;
   margin-bottom: .75rem;
   transition: color .2s;
}

.footer-col a:hover {
   color: var(--accent);
}

.footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding-top: 2rem;
   border-top: 1px solid var(--border);
   font-size: .8rem;
   color: var(--text-muted);
}

.footer-bottom a {
   color: var(--text-muted);
   transition: color .2s;
}

.footer-bottom a:hover {
   color: var(--accent);
}

.footer-socials {
   display: flex;
   gap: 1.5rem;
}


/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */

.page-hero {
   padding: 10rem 3rem 5rem;
   position: relative;
   overflow: hidden;
}

.page-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--bg-secondary);
   border-bottom: 1px solid var(--border);
}

.page-hero-orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   pointer-events: none;
}

.page-hero-orb--1 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(219, 24, 147, 0.08), transparent 70%);
   top: -20%;
   right: -5%;
}

.page-hero-orb--2 {
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, rgba(180, 120, 255, 0.05), transparent 70%);
   bottom: -10%;
   left: 10%;
}

.page-hero-content {
   position: relative;
   z-index: 2;
   max-width: 700px;
}

.page-hero-content h1 {
   font-family: var(--font-display);
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-weight: 400;
   line-height: 1.1;
   margin-bottom: 1.25rem;
}

.page-hero-content h1 em {
   color: var(--accent);
   font-style: italic;
}

.page-hero-content p {
   font-size: 1.15rem;
   color: var(--text-secondary);
   font-weight: 300;
   line-height: 1.7;
   max-width: 540px;
}


/* ============================================
   OVER ONS — Story blocks
   ============================================ */

.story-section {
   padding: 6rem 3rem;
}

.story-section.alt {
   background: var(--bg-secondary);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.story-block {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1100px;
   margin: 0 auto;
}

.story-block.reverse .story-img {
   order: -1;
}

.story-img {
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--border);
   box-shadow: var(--shadow-md);
}

.story-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   aspect-ratio: 4/3;
}

.story-text h2 {
   font-family: var(--font-display);
   font-size: 1.75rem;
   line-height: 1.2;
   margin-bottom: 1.25rem;
}

.story-text h2 em {
   color: var(--accent);
   font-style: italic;
}

.story-text p {
   color: var(--text-secondary);
   font-size: 1rem;
   line-height: 1.8;
   font-weight: 300;
   margin-bottom: 1rem;
}

.story-text p:last-child {
   margin-bottom: 0;
}

.story-text a {
   color: var(--accent);
   text-decoration: underline;
}

.story-stat {
   display: inline-flex;
   align-items: baseline;
   gap: 0.5rem;
   margin-top: 1rem;
   padding: 1rem 1.5rem;
   background: var(--accent-glow);
   border: 1px solid var(--border-accent);
   border-radius: 14px;
}

.story-stat-value {
   font-family: var(--font-display);
   font-size: 2rem;
   color: var(--accent);
   line-height: 1;
}

.story-stat-label {
   font-size: 0.85rem;
   color: var(--text-secondary);
   font-weight: 400;
}


/* ============================================
   OVER ONS — Team grid
   ============================================ */

.team-section {
   padding: 6rem 3rem;
}

.team-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
}

.team-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   overflow: hidden;
   transition: all 0.35s ease;
   box-shadow: var(--shadow-sm);
}

.team-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
   border-color: var(--border-accent);
}

.team-card-img {
   width: 100%;
   aspect-ratio: 1/1;
   overflow: hidden;
   background: var(--bg-secondary);
}

.team-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
   transform: scale(1.05);
}

.team-card-body {
   padding: 1.5rem 1.75rem 1.75rem;
}

.team-card-name {
   font-family: var(--font-display);
   font-size: 1.35rem;
   margin-bottom: 0.35rem;
   line-height: 1.2;
}

.team-card-role {
   font-size: 0.9rem;
   color: var(--accent);
   font-weight: 500;
   margin-bottom: 0.2rem;
}

.team-card-tag {
   font-size: 0.8rem;
   color: var(--text-muted);
   font-weight: 400;
}

.team-card-links {
   display: flex;
   gap: 0.75rem;
   margin-top: 1rem;
   padding-top: 1rem;
   border-top: 1px solid var(--border);
}

.team-card-links a {
   font-size: 0.8rem;
   color: var(--text-muted);
   transition: color 0.2s;
   font-weight: 400;
}

.team-card-links a:hover {
   color: var(--accent);
}

.advisors-section {
   padding: 6rem 3rem;
   background: var(--bg-primary);
   border-bottom: 1px solid var(--border);
}

.advisors-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
   max-width: 800px;
}


/* ============================================
   FYSIOTHERAPIE — Landing hero
   ============================================ */

.landing-hero {
   padding: 10rem 3rem 6rem;
   position: relative;
   overflow: hidden;
}

.landing-hero-bg {
   position: absolute;
   inset: 0;
   background: var(--bg-secondary);
   border-bottom: 1px solid var(--border);
}

.landing-hero .hero-orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   pointer-events: none;
}

.landing-hero .hero-orb--1 {
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(219, 24, 147, 0.1), transparent 70%);
   top: -25%;
   right: -8%;
}

.landing-hero .hero-orb--2 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(180, 120, 255, 0.06), transparent 70%);
   bottom: -15%;
   left: 5%;
}

.landing-hero-inner {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
}

.landing-hero-text .section-label {
   margin-bottom: 1.5rem;
}

.landing-hero-text h1 {
   font-family: var(--font-display);
   font-size: clamp(2.5rem, 5vw, 3.8rem);
   font-weight: 400;
   line-height: 1.08;
   margin-bottom: 1.5rem;
}

.landing-hero-text h1 em {
   color: var(--accent);
   font-style: italic;
}

.landing-hero-text p {
   font-size: 1.15rem;
   color: var(--text-secondary);
   font-weight: 300;
   line-height: 1.7;
   max-width: 480px;
   margin-bottom: 2rem;
}

.landing-hero-actions {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.landing-hero-video {
   border-radius: 20px;
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   aspect-ratio: 16/10;
   background: #000;
}

.landing-hero-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}


/* ============================================
   FYSIOTHERAPIE — Intro split
   ============================================ */

.intro {
   padding: 6rem 3rem;
}

.intro-block {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1100px;
   margin: 0 auto;
}

.intro-text h2 {
   font-family: var(--font-display);
   font-size: clamp(1.75rem, 3vw, 2.2rem);
   line-height: 1.2;
   margin-bottom: 1.25rem;
}

.intro-text h2 em {
   color: var(--accent);
   font-style: italic;
}

.intro-text p {
   color: var(--text-secondary);
   font-size: 1rem;
   line-height: 1.8;
   font-weight: 300;
   margin-bottom: 1rem;
}

.intro-text a.link {
   color: var(--accent);
   font-weight: 500;
   font-size: 0.95rem;
   transition: opacity 0.2s;
}

.intro-text a.link:hover {
   opacity: 0.8;
}

.intro-visual {
   overflow: hidden;
   box-shadow: var(--shadow-md);
   aspect-ratio: 16/9;
}

.intro-visual video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}


/* ============================================
   FYSIOTHERAPIE — Numbered benefit cards
   ============================================ */

.benefit-cards {
   padding: 6rem 3rem;
   background: var(--bg-secondary);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.benefit-cards-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.benefit-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 2.5rem 2rem;
   transition: all 0.35s ease;
   box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-lg);
   border-color: var(--border-accent);
}

.benefit-card-num {
   font-family: var(--font-display);
   font-size: 3rem;
   color: var(--accent);
   line-height: 1;
   margin-bottom: 1rem;
   opacity: 0.7;
}

.benefit-card h3 {
   font-family: var(--font-display);
   font-size: 1.25rem;
   margin-bottom: 0.75rem;
   line-height: 1.2;
}

.benefit-card p {
   color: var(--text-secondary);
   font-size: 0.92rem;
   line-height: 1.7;
   font-weight: 300;
}


/* ============================================
   FYSIOTHERAPIE — Testimonials (with photos)
   ============================================ */

.testimonials-photo {
   padding: 6rem 3rem;
}

.testimonials-photo-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   max-width: 900px;
   margin: 0 auto;
}

.testimonial-photo-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 2.5rem;
   box-shadow: var(--shadow-sm);
   transition: all 0.3s ease;
}

.testimonial-photo-card:hover {
   box-shadow: var(--shadow-md);
   border-color: var(--border-accent);
}

.testimonial-photo-card blockquote {
   font-size: 0.95rem;
   color: var(--text-secondary);
   line-height: 1.7;
   font-weight: 300;
   font-style: italic;
   margin-bottom: 1.5rem;
}

.testimonial-photo-card blockquote::before {
   content: '\201C';
   font-family: var(--font-display);
   font-size: 3rem;
   color: var(--accent);
   line-height: 0.5;
   display: block;
   margin-bottom: 0.75rem;
   opacity: 0.5;
}

.testimonial-photo-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.testimonial-photo-author img {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid var(--border);
}

.testimonial-photo-author .name {
   font-weight: 600;
   font-size: 0.9rem;
}

.testimonial-photo-author .org {
   font-size: 0.8rem;
   color: var(--accent);
   font-weight: 400;
}


/* ============================================
   FYSIOTHERAPIE — Practice benefits (icon cards)
   ============================================ */

.practice {
   padding: 6rem 3rem;
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.practice-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
   max-width: 1000px;
   margin: 0 auto;
}

.practice-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 2.25rem;
   transition: all 0.35s ease;
   box-shadow: var(--shadow-sm);
   display: flex;
   gap: 1.5rem;
   align-items: flex-start;
}

.practice-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-lg);
   border-color: var(--border-accent);
}

.practice-icon {
   flex-shrink: 0;
   width: 56px;
   height: 56px;
   border-radius: 14px;
   background: var(--accent-glow);
   border: 1px solid var(--border-accent);
   display: flex;
   align-items: center;
   justify-content: center;
}

.practice-icon img {
   width: 32px;
   height: 32px;
   object-fit: contain;
}

.practice-card h3 {
   font-family: var(--font-display);
   font-size: 1.15rem;
   margin-bottom: 0.5rem;
   line-height: 1.2;
}

.practice-card p {
   color: var(--text-secondary);
   font-size: 0.9rem;
   line-height: 1.7;
   font-weight: 300;
}


/* ============================================
   FYSIOTHERAPIE — Pricing
   ============================================ */

.pricing {
   padding: 6rem 3rem;
}

.pricing-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
   max-width: 1050px;
   margin: 0 auto;
}

.pricing-visual {
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--border);
   box-shadow: var(--shadow-md);
}

.pricing-visual img {
   width: 100%;
   height: auto;
}

.pricing-card {
   background: var(--bg-card);
   border: 1px solid var(--border-accent);
   border-radius: 24px;
   padding: 3rem;
   box-shadow: var(--shadow-md);
   text-align: center;
}

.pricing-card .section-label {
   justify-content: center;
}

.pricing-card h3 {
   font-family: var(--font-display);
   font-size: 1.3rem;
   margin-bottom: 0.5rem;
}

.pricing-amount {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 0.25rem;
   margin: 1.5rem 0 0.5rem;
}

.pricing-amount .currency {
   font-size: 1.2rem;
   color: var(--text-muted);
   font-weight: 500;
   align-self: flex-start;
   margin-top: 0.5rem;
}

.pricing-amount .value {
   font-family: var(--font-display);
   font-size: 3.5rem;
   color: var(--accent);
   line-height: 1;
}

.pricing-note {
   font-size: 0.8rem;
   color: var(--text-muted);
   margin-bottom: 1.75rem;
   font-weight: 300;
}

.pricing-features {
   text-align: left;
   margin-bottom: 2rem;
}

.pricing-features li {
   padding: 0.6rem 0;
   border-bottom: 1px solid var(--border);
   font-size: 0.9rem;
   color: var(--text-secondary);
   font-weight: 300;
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.pricing-features li::before {
   content: '✓';
   color: var(--accent);
   font-weight: 700;
   font-size: 0.85rem;
   flex-shrink: 0;
}

.pricing-features li:last-child {
   border-bottom: none;
}

.pricing-disclaimer {
   font-size: 0.85rem;
   color: var(--text-muted);
   max-width: 1050px;
   margin: 2rem auto 0;
   text-align: center;
   font-weight: 300;
   font-style: italic;
}


/* ============================================
   FYSIOTHERAPIE — Contact CTA
   ============================================ */

.contact-cta {
   padding: 6rem 3rem;
   background: var(--bg-secondary);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.contact-inner {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 3rem;
   align-items: center;
   max-width: 900px;
   margin: 0 auto;
}

.contact-photos {
   display: flex;
}

.contact-photos img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--bg-secondary);
   box-shadow: var(--shadow-sm);
}

.contact-photos img:nth-child(2) {
   margin-left: -20px;
}

.contact-text h2 {
   font-family: var(--font-display);
   font-size: 1.6rem;
   margin-bottom: 0.75rem;
   line-height: 1.2;
}

.contact-text h2 em {
   color: var(--accent);
   font-style: italic;
}

.contact-text p {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.7;
   font-weight: 300;
   margin-bottom: 1rem;
}

.contact-emails {
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
   margin-bottom: 1.5rem;
}

.contact-emails a {
   color: var(--accent);
   font-size: 0.9rem;
   font-weight: 500;
   transition: opacity 0.2s;
}

.contact-emails a:hover {
   opacity: 0.8;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
   opacity: 0;
   transform: translateY(32px);
   transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
   nav {
      padding: 1rem 1.5rem;
   }

   .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--bg-card);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      gap: 1rem;
      box-shadow: var(--shadow-md);
   }

   .nav-links.active {
      display: flex;
   }

   .nav-toggle {
      display: flex;
   }

   .nav-dropdown-menu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      border: none;
      border-radius: 0;
      padding: 0 0 0 1rem;
      min-width: 0;
      display: none;
      background: transparent;
   }

   .nav-dropdown.open .nav-dropdown-menu {
      display: block;
   }

   .nav-dropdown.open .nav-chevron {
      transform: rotate(180deg);
   }

   .nav-dropdown-menu a {
      padding: 0.5rem 0.75rem;
   }

   section {
      padding: 4rem 1.5rem;
   }

   .hero {
      padding: 7rem 1.5rem 3rem;
   }

   .about-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
   }

   .about-visual {
      aspect-ratio: 16/10;
   }


   .features-grid {
      grid-template-columns: 1fr;
   }

   .testimonials-grid {
      grid-template-columns: 1fr;
   }

   .sectors-grid {
      grid-template-columns: 1fr;
   }

   .partners-split {
      grid-template-columns: 1fr;
   }

   .benefit-item {
      grid-template-columns: 50px 1fr;
      gap: 1.5rem;
   }

   .benefit-num-home {
      font-size: 2rem;
   }

   .page-hero {
      padding: 8rem 1.5rem 3rem;
   }

   .story-section {
      padding: 4rem 1.5rem;
   }

   .story-block {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .story-block.reverse .story-img {
      order: 0;
   }

   .team-section {
      padding: 4rem 1.5rem;
   }

   .advisors-section {
      padding: 4rem 1.5rem;
   }

   .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
   }

   .advisors-grid {
      grid-template-columns: 1fr;
   }

   .landing-hero {
      padding: 8rem 1.5rem 4rem;
   }

   .landing-hero-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
   }

   .intro {
      padding: 4rem 1.5rem;
   }

   .intro-block {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .benefit-cards {
      padding: 4rem 1.5rem;
   }

   .benefit-cards-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
   }

   .testimonials-photo {
      padding: 4rem 1.5rem;
   }

   .testimonials-photo-grid {
      grid-template-columns: 1fr;
   }

   .practice {
      padding: 4rem 1.5rem;
   }

   .practice-grid {
      grid-template-columns: 1fr;
   }

   .pricing {
      padding: 4rem 1.5rem;
   }

   .pricing-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .contact-cta {
      padding: 4rem 1.5rem;
   }

   .contact-inner {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .contact-photos {
      justify-content: center;
   }

   .contact-emails {
      align-items: center;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
   }

   .cta-inner {
      padding: 2.5rem 2rem;
   }
}

@media (max-width: 600px) {
   .team-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .practice-card {
      flex-direction: column;
   }
}

/* =============================================
   BLOG LISTING
   ============================================= */

.blog-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.blog-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 18px;
   overflow: hidden;
   transition: transform 0.25s ease, box-shadow 0.25s ease;
   display: flex;
   flex-direction: column;
}

.blog-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-body {
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.blog-card-tag {
   display: inline-block;
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.06em;
   color: var(--accent);
   background: var(--accent-glow);
   padding: 0.25rem 0.75rem;
   border-radius: 100px;
   margin-bottom: 0.75rem;
   width: fit-content;
}

.blog-card-title {
   font-family: var(--font-display);
   font-size: 1.15rem;
   line-height: 1.35;
   color: var(--text-primary);
   margin-bottom: 0.5rem;
}

.blog-card-excerpt {
   font-size: 0.92rem;
   color: var(--text-secondary);
   font-weight: 300;
   line-height: 1.6;
   flex: 1;
}

.blog-card-meta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 1.25rem;
   padding-top: 1rem;
   border-top: 1px solid var(--border);
}

.blog-card-date {
   font-size: 0.8rem;
   color: var(--text-muted);
   font-weight: 400;
}

.blog-card-link {
   font-size: 0.85rem;
   font-weight: 500;
   color: var(--accent);
   transition: opacity 0.15s ease;
}

.blog-card-link:hover {
   opacity: 0.7;
}

/* =============================================
   BLOG POST
   ============================================= */

.blog-post {
   max-width: 740px;
   margin: 0 auto;
   padding: 4rem 2rem 6rem;
}

.blog-post-meta {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 2rem;
   flex-wrap: wrap;
}

.blog-post-content h2 {
   font-family: var(--font-display);
   font-size: 1.6rem;
   color: var(--text-primary);
   margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
   font-family: var(--font-display);
   font-size: 1.3rem;
   color: var(--text-primary);
   margin: 2rem 0 0.75rem;
}

.blog-post-content p {
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--text-secondary);
   font-weight: 300;
   margin-bottom: 1.25rem;
}

.blog-post-content blockquote {
   border-left: 3px solid var(--accent);
   padding: 1rem 1.5rem;
   margin: 2rem 0;
   background: var(--bg-secondary);
   border-radius: 0 12px 12px 0;
   font-style: italic;
   color: var(--text-primary);
   font-size: 1.05rem;
   line-height: 1.7;
}

.blog-post-content strong {
   color: var(--text-primary);
   font-weight: 600;
}

@media (max-width: 900px) {
   .blog-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .blog-grid {
      grid-template-columns: 1fr;
   }

   .blog-post {
      padding: 2.5rem 1.5rem 4rem;
   }
}