        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-text-size-adjust: none;
            -moz-text-size-adjust: none;
            text-size-adjust: none;
            max-height: 1000000px;
        }

        :root {
            --bg-light: #fafaf8;
            --bg-white: #ffffff;
            --bg-cream: #f5f3ef;
            --surface: #ffffff;
            --surface-elevated: #f8f8f6;
            --green-dark: #2d5a47;
            --green: #3d7a5a;
            --green-light: #5a9a77;
            --green-lighter: #7ab896;
            --green-pale: #e8f2ed;
            --green-muted: #d4e5dc;
            --sage: #8bab9a;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-muted: #8a8a8a;
            --gradient-green: linear-gradient(135deg, #3d7a5a 0%, #5a9a77 50%, #3d7a5a 100%);
            --gradient-light: linear-gradient(180deg, #fafaf8 0%, #f5f3ef 100%);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: none;
            -moz-text-size-adjust: none;
            text-size-adjust: none;
            font-size: 16px;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-light);
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--sage);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--green);
        }

        /* Navigation */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid rgba(61, 122, 90, 0.1);
            padding: 1rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--green);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero Section - New Centered Design */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: var(--bg-light);
        }

        /* Animated Background Elements */
        .hero-decoration {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(61, 122, 90, 0.2) 0%, transparent 70%);
            top: 5%;
            left: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 171, 154, 0.15) 0%, transparent 70%);
            top: 50%;
            right: -10%;
            animation-delay: -7s;
        }

        .shape-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(90, 154, 119, 0.12) 0%, transparent 70%);
            bottom: 10%;
            left: 10%;
            animation-delay: -14s;
        }

        .shape-4 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(61, 122, 90, 0.1) 0%, transparent 70%);
            top: 30%;
            right: 20%;
            animation-delay: -10s;
        }

        /* Grid Pattern */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(61, 122, 90, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(61, 122, 90, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
        }

        /* Decorative Circles */
        .hero-circles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .circle-outline {
            position: absolute;
            border: 2px solid rgba(61, 122, 90, 0.1);
            border-radius: 50%;
        }

        .circle-1 {
            width: 550px;
            height: 550px;
            top: -15%;
            right: 5%;
        }

        .circle-2 {
            width: 350px;
            height: 350px;
            top: 10%;
            left: -8%;
            opacity: 0.8;
        }

        .circle-3 {
            width: 700px;
            height: 700px;
            bottom: -20%;
            right: -15%;
            opacity: 0.5;
        }

        .circle-4 {
            width: 200px;
            height: 200px;
            top: 35%;
            left: 15%;
            opacity: 0.6;
        }

        .circle-5 {
            width: 450px;
            height: 450px;
            bottom: 5%;
            left: 30%;
            opacity: 0.4;
        }

        .circle-6 {
            width: 280px;
            height: 280px;
            top: 65%;
            right: 10%;
            opacity: 0.4;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes rotateSlow {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }


        /* Dots Pattern */
        .hero-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(61, 122, 90, 0.08) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.4;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: rgba(61, 122, 90, 0.1);
            border: 1px solid rgba(61, 122, 90, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--green-dark);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .hero-tag::before {
            content: '';
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
            animation: pulse 1.5s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.4); }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .hero-title span {
            display: block;
        }

        .hero-title .accent {
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: italic;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
            margin-bottom: 4rem;
        }

        /* Hero Stats Section */
        .hero-stats {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            margin-top: 4rem;
            padding: 0.85rem 1.25rem;
            background: rgba(255, 255, 255, 0.75);
            border-radius: 12px;
            border: 1px solid rgba(61, 122, 90, 0.06);
            box-shadow: 0 1px 8px rgba(61, 122, 90, 0.04);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
        }

        .hero-stat {
            text-align: center;
            position: relative;
            padding: 0.4rem 2rem;
            flex: 1;
        }

        .hero-stat::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(61, 122, 90, 0.15);
        }

        .hero-stat:first-child::before {
            display: none;
        }

        .hero-stat-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.4;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-transform: none;
        }

        .hero-stat-text strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            color: var(--green-dark);
            font-weight: 500;
            line-height: 1;
            margin-bottom: 0.35rem;
            letter-spacing: -0.02em;
        }

        /* Hero Visual Accents */
        .hero-accent {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .hero-accent-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(61, 122, 90, 0.06) 0%, transparent 70%);
            top: 10%;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .hero-accent-2 {
            display: none;
        }

        .hero-accent-3 {
            display: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-green);
            color: white;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #5a9a77 0%, #7ab896 50%, #5a9a77 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(61, 122, 90, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.7);
            color: var(--text-primary);
            border: 2px solid rgba(61, 122, 90, 0.3);
        }

        .btn-secondary:hover {
            background: var(--green-pale);
            border-color: var(--green);
            color: var(--green-dark);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 8rem 2rem;
            position: relative;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--green-dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding: 0.6rem 1.5rem;
            background: rgba(61, 122, 90, 0.08);
            border-radius: 50px;
            border: 1px solid rgba(61, 122, 90, 0.15);
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(61, 122, 90, 0.2));
        }

        .section-tag::before {
            right: calc(100% + 0.75rem);
        }

        .section-tag::after {
            left: calc(100% + 0.75rem);
            background: linear-gradient(90deg, rgba(61, 122, 90, 0.2), transparent);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .section-title span {
            color: var(--green);
            font-style: italic;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .section-header-accent {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .section-header-accent span {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            opacity: 0.3;
        }

        .section-header-accent span:nth-child(2) {
            width: 12px;
            height: 12px;
            opacity: 0.6;
        }

        /* About Section */
        .about {
            background: var(--bg-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            height: 650px;
        }

        .about-collage {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .collage-image {
            position: absolute;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(61, 122, 90, 0.15);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
            border: 3px solid var(--bg-white);
        }

        .collage-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .collage-image:hover {
            box-shadow: 0 20px 50px rgba(61, 122, 90, 0.25);
            z-index: 10 !important;
        }

        /* Main image - largest, centered (original Mivania portrait) */
        .collage-image-1 {
            width: 300px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-1deg);
            z-index: 4;
        }

        .collage-image-1:hover {
            transform: translate(-50%, -50%) rotate(-1deg) scale(1.03);
        }

        .collage-image-1 img {
            object-position: center 30%;
        }

        /* Training image 1 - top left */
        .collage-image-2 {
            width: 220px;
            height: 280px;
            top: 0;
            left: 0;
            transform: rotate(-4deg);
            z-index: 2;
        }

        .collage-image-2 img {
            object-position: 70% center;
        }

        .collage-image-2:hover {
            transform: rotate(-4deg) scale(1.03);
        }

        /* Training image 2 - top right */
        .collage-image-3 {
            width: 200px;
            height: 260px;
            top: 20px;
            right: 0;
            transform: rotate(5deg);
            z-index: 1;
        }

        .collage-image-3:hover {
            transform: rotate(5deg) scale(1.03);
        }

        /* Training image 3 - bottom right, overlapping main */
        .collage-image-4 {
            width: 260px;
            height: 260px;
            bottom: 20px;
            right: 0;
            left: auto;
            transform: rotate(-3deg);
            z-index: 5;
        }

        .collage-image-4:hover {
            transform: rotate(-3deg) scale(1.03);
        }

        .about-frame {
            display: none;
        }

        .about-stats {
            position: absolute;
            bottom: -30px;
            left: -30px;
            display: flex;
            gap: 1.5rem;
            background: var(--bg-white);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            border: 1px solid var(--green-muted);
            box-shadow: 0 20px 40px rgba(61, 122, 90, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--green);
            line-height: 1;
        }

        .stat-icon {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--green);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
        }

        .about-content {
            padding: 2rem 0;
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .about-content h3 span {
            color: var(--green);
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: var(--green-pale);
            border: 1px solid var(--green-muted);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--green-dark);
        }

        .highlight-item svg {
            width: 18px;
            height: 18px;
            fill: var(--green);
        }

        /* Specialization Section */
        .specialization {
            background:
                linear-gradient(135deg, #f7f5f0 0%, #faf9f6 25%, var(--bg-cream) 50%, #f5f2eb 75%, #f8f6f1 100%);
            position: relative;
            overflow: hidden;
            padding: 3.5rem 2rem 3rem;
        }

        /* Layered color atmosphere */
        .spec-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 30% 40%, rgba(61, 122, 90, 0.04) 0%, transparent 100%),
                radial-gradient(ellipse 70% 50% at 70% 60%, rgba(212, 168, 50, 0.03) 0%, transparent 100%);
            pointer-events: none;
        }

        /* Inner glow panel behind content */
        .spec-bg::before {
            content: '';
            position: absolute;
            top: 8%;
            left: 10%;
            right: 10%;
            bottom: 8%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Subtle noise texture overlay */
        .spec-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.4;
            pointer-events: none;
        }

        .specialization .section-container {
            position: relative;
            z-index: 1;
        }

        .specialization .section-header {
            margin-bottom: 3rem;
        }

        /* Topographic terrain background */
        .spec-terrain {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            /* Background loaded via lazy-backgrounds.js */
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.055;
            mix-blend-mode: multiply;
        }

        /* Placeholder while loading */
        .spec-terrain:not(.bg-loaded) {
            background-color: rgba(245, 242, 235, 0.3);
        }

        /* Cards Grid */
        .spec-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 3rem;
            position: relative;
        }

        /* Connector System */
        .spec-card-connector {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .connector-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-white);
            border: 3px solid;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .spec-card--green .connector-dot {
            border-color: #3d7a5a;
            color: #3d7a5a;
        }

        .spec-card--rose .connector-dot {
            border-color: #2196f3;
            color: #2196f3;
        }

        .spec-card--gold .connector-dot {
            border-color: #d4a832;
            color: #d4a832;
        }

        .connector-line {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateY(-50%);
            height: 3px;
            width: calc(100% + 1.5rem);
            z-index: 1;
        }

        /* First card line: green to blue */
        .spec-card--green .connector-line {
            background: linear-gradient(90deg, rgba(61, 122, 90, 0.3), rgba(33, 150, 243, 0.3));
        }

        /* Second card line: blue to gold */
        .spec-card--rose .connector-line {
            background: linear-gradient(90deg, rgba(33, 150, 243, 0.3), rgba(212, 168, 50, 0.3));
        }

        /* Hide line on last card */
        .spec-card:last-child .connector-line {
            display: none;
        }


        .spec-card {
            position: relative;
            height: 420px;
            border-radius: 20px;
            overflow: visible;
            transition: all 0.4s ease;
            will-change: transform; /* GPU acceleration hint */
        }

        .spec-card:hover {
            transform: translateY(-8px);
        }

        .spec-card--green:hover {
            border-color: rgba(61, 122, 90, 0.6);
        }

        .spec-card--rose:hover {
            border-color: rgba(33, 150, 243, 0.6);
        }

        .spec-card--gold:hover {
            border-color: rgba(212, 168, 50, 0.6);
        }


        .spec-card-image {
            width: 100%;
            height: 100%;
            aspect-ratio: 4 / 5; /* Maintain proportions */
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            contain: layout style paint; /* Isolate layout impact */
        }

        /* Colored border accents on images */
        .spec-card--green .spec-card-image {
            border: 3px solid #5a9d73;
        }

        .spec-card--rose .spec-card-image {
            border: 3px solid #42a5f5;
        }

        .spec-card--gold .spec-card-image {
            border: 3px solid #ddb850;
        }

        .spec-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.05) 40%,
                rgba(0, 0, 0, 0.1) 60%,
                rgba(0, 0, 0, 0.75) 100%
            );
        }

        .spec-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 5rem 2rem 1.5rem;
            color: white;
            z-index: 2;
        }

        .spec-card-label {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            margin-bottom: 0.65rem;
            backdrop-filter: blur(8px);
        }

        .spec-card-label--green {
            background: rgba(61, 122, 90, 1);
            color: #ffffff;
        }

        .spec-card-label--rose {
            background: rgba(33, 150, 243, 1);
            color: #ffffff;
        }

        .spec-card-label--gold {
            background: rgba(212, 168, 50, 1);
            color: #ffffff;
        }

        .spec-card-content h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            color: white;
            margin: 0;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .spec-card-content p {
            letter-spacing: 0.5px;
            line-height: 1.6;
        }

        .spec-card-btn {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            will-change: transform; /* GPU acceleration hint */
        }

        .spec-card-btn:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .spec-card-btn svg {
            width: 24px;
            height: 24px;
            fill: var(--text-primary);
        }

        /* Colored icons for each card */
        .spec-card--green .spec-card-btn svg {
            fill: #3d7a5a;
        }

        .spec-card--rose .spec-card-btn svg {
            fill: #2196f3;
        }

        .spec-card--gold .spec-card-btn svg {
            fill: #d4a832;
        }

        /* Lazy Loading States */
        .spec-card-image:not(.bg-loaded) {
            background-color: rgba(200, 200, 200, 0.1);
            position: relative;
        }

        /* Skeleton shimmer animation */
        .spec-card-image:not(.bg-loaded)::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Smooth fade-in when loaded */
        .spec-card-image.bg-loaded {
            animation: bgFadeIn 0.4s ease-in;
        }

        @keyframes bgFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Services Section */
        .services {
            background: var(--bg-cream);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--green-muted), transparent);
        }

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

        .service-card {
            background: var(--bg-white);
            border-radius: 20px;
            overflow: visible;
            border: 1px solid rgba(61, 122, 90, 0.1);
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 1050px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--green), #d4a832);
            opacity: 0;
            z-index: 2;
            display: none;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--green);
            box-shadow: 0 20px 50px rgba(61, 122, 90, 0.12);
        }

        .service-card:hover::before {
            background: linear-gradient(90deg, #d4a832, var(--green));
        }

        /* Card Flip Container - Simple Toggle */
        .card-flip-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Front and Back Faces */
        .card-front,
        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            transition: opacity 0.4s ease;
        }

        .card-front {
            opacity: 1;
            pointer-events: auto;
            z-index: 2;
        }

        .card-back {
            opacity: 0;
            pointer-events: none;
            z-index: 1;
            padding: 2rem;
            justify-content: space-between;
        }

        .service-card.flipped .card-front {
            opacity: 0;
            pointer-events: none;
            z-index: 1;
        }

        .service-card.flipped .card-back {
            opacity: 1;
            pointer-events: auto;
            z-index: 2;
        }

        .service-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            margin: 0;
            border-radius: 20px 20px 0 0;
            flex-shrink: 0;
        }

        .service-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-white) 0%, transparent 40%);
        }

        .service-type {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.4rem 0.9rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--green-dark);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 50px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .service-type svg {
            width: 12px;
            height: 12px;
            fill: var(--green);
        }

        .service-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.4rem 0.9rem;
            background: linear-gradient(135deg, #c5a028 0%, #e2c04b 50%, #c5a028 100%);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-radius: 50px;
            z-index: 2;
        }

        .service-content {
            padding: 1.75rem;
            position: relative;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .service-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .service-content p {
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .service-features li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .service-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--bg-cream);
            margin-top: auto;
        }

        .service-price {
            display: flex;
            align-items: baseline;
            gap: 0.35rem;
            flex-wrap: wrap;
        }

        .service-price .price-label {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #d4a832;
        }

        .service-price .price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 2.25rem;
            font-weight: 600;
            color: #d4a832;
            line-height: 1;
        }

        .service-price .price-dollar {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: #d4a832;
        }

        .service-price .price-currency {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-left: 0.15rem;
        }

        .btn-service {
            padding: 0.875rem 5rem;
            font-size: 0.85rem;
            background: linear-gradient(135deg, #2d5a47 0%, #3d7a5a 40%, #5a9a77 100%);
            color: white;
            border: 1px solid rgba(61, 122, 90, 0.3);
            box-shadow: 0 4px 15px rgba(61, 122, 90, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .btn-service::before {
            background: linear-gradient(135deg, #5a9a77 0%, #7ab896 40%, #5a9a77 100%);
        }

        .btn-service:hover {
            box-shadow: 0 12px 30px rgba(61, 122, 90, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .service-pricing-tiers {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 1.5rem;
            padding: 0 0.75rem 0.75rem;
            background: linear-gradient(160deg, #faf8f5, #f3f0eb);
            border-radius: 14px;
            border: 1px solid rgba(61, 122, 90, 0.12);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        .pricing-tiers-header {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.6rem 0;
            margin: 0 -0.75rem 0;
            background: linear-gradient(135deg, rgba(61, 122, 90, 0.14), rgba(61, 122, 90, 0.22));
            border-radius: 12px 12px 0 0;
            border-bottom: 1px solid rgba(61, 122, 90, 0.15);
        }

        .pricing-tier .per-session {
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-tier {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.85rem 1rem;
            border-bottom: 1px solid rgba(61, 122, 90, 0.08);
            transition: all 0.25s ease;
        }

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

        .pricing-tier:hover {
            background: rgba(61, 122, 90, 0.05);
            border-radius: 8px;
        }

        .pricing-tier .frequency {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .pricing-tier .amount {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--green-dark);
        }

        .service-pricing-note {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 0.75rem;
            margin-bottom: 1.5rem;
        }

        /* Flip Trigger Button */
        .flip-trigger-btn {
            margin-top: 1.5rem;
            padding: 1rem 1.5rem;
            background: var(--green);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            box-shadow: 0 4px 15px rgba(61, 122, 90, 0.3);
        }

        .flip-trigger-btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(61, 122, 90, 0.4);
        }

        .flip-trigger-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(61, 122, 90, 0.3);
        }

        .flip-trigger-btn .flip-icon {
            width: 20px;
            height: 20px;
            fill: #fff;
            transition: transform 0.3s ease;
        }

        .flip-trigger-btn:hover .flip-icon {
            transform: rotateY(180deg);
        }

        /* Card Back Styles */
        .card-back-header {
            text-align: center;
            margin-bottom: 2rem;
            margin-top: auto;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(61, 122, 90, 0.1);
        }

        .card-back-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .card-back-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--green-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Payment Examples List */
        .payment-examples-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .payment-example-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #faf8f5, #f3f0eb);
            border-radius: 12px;
            border: 1px solid rgba(61, 122, 90, 0.1);
            transition: all 0.3s ease;
        }

        .payment-example-item:hover {
            transform: translateX(8px);
            border-color: var(--green);
            box-shadow: 0 8px 24px rgba(61, 122, 90, 0.12);
        }

        .payment-example-item .frequency {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .payment-example-item .monthly-amount {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--green-dark);
        }

        .payment-example-item .monthly-amount .dollar {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
        }

        .payment-example-item .per-month {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .payment-amount-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .per-person-note {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .payment-note {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 400;
            color: #8a8a8a;
            font-style: italic;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
        }

        .card-front .payment-note {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 400;
            color: #8a8a8a;
            font-style: italic;
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .card-front .payment-note + .payment-note {
            margin-top: 0;
        }

        .card-back .payment-note {
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .card-back .payment-note + .payment-note {
            margin-top: 0;
        }

        /* Flip Back Button */
        .flip-back-btn {
            margin-top: 1.5rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, var(--green) 0%, #5a9a77 50%, var(--green) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .flip-back-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #5a9a77 0%, #7ab896 50%, #5a9a77 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .flip-back-btn:hover::before {
            opacity: 1;
        }

        .flip-back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(61, 122, 90, 0.25);
        }

        .flip-back-btn .flip-icon {
            width: 20px;
            height: 20px;
            fill: white;
            position: relative;
            z-index: 1;
        }

        .flip-back-btn span {
            position: relative;
            z-index: 1;
        }

        /* Responsive - Card Flip */
        @media (max-width: 1024px) {
            .service-card {
                min-height: auto;
            }

            .card-flip-container {
                display: grid;
                height: auto;
            }

            .card-front,
            .card-back {
                position: relative;
                grid-column: 1;
                grid-row: 1;
                height: auto;
            }

            .service-image {
                height: 200px;
                min-height: 200px;
            }

            .card-back {
                padding: 1.5rem;
            }

            .card-back-header h3 {
                font-size: 1.25rem;
            }

            .payment-example-item {
                padding: 1rem;
            }

            .payment-example-item .monthly-amount {
                font-size: 1rem;
            }

            .flip-trigger-btn,
            .flip-back-btn {
                font-size: 0.85rem;
                padding: 0.875rem 1.25rem;
            }
        }

        /* Contract pricing header */
        .service-pricing-contract {
            margin-top: 0;
            padding: 0.4rem 0.75rem;
            background: linear-gradient(135deg, rgba(61, 122, 90, 0.06), rgba(61, 122, 90, 0.10));
            border-radius: 0 0 12px 12px;
            border: 1px solid rgba(61, 122, 90, 0.12);
            border-top: none;
        }

        .pricing-contract-header {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green-dark);
            margin: 0 0 0.35rem 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-contract-terms {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--green-dark);
            margin: 0;
            padding: 0;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .pricing-contract-note {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.55rem;
            font-weight: 400;
            color: var(--text-secondary);
            margin: -3px 0 0 0;
            padding: 0;
            line-height: 1;
            font-style: italic;
            display: block;
        }

        /* Connect pricing tiers with contract footer below */
        .service-pricing-tiers:has(+ .service-pricing-contract) {
            border-radius: 14px 14px 0 0;
            border-bottom: none;
        }

        /* À la carte section */
        .service-pricing-alacarte {
            margin-top: 1rem;
            padding: 0;
            border-radius: 14px;
            border: 2px solid rgba(212, 168, 50, 0.20);
            background: linear-gradient(135deg, rgba(212, 168, 50, 0.05), rgba(212, 168, 50, 0.08));
            box-shadow: 0 2px 12px rgba(212, 168, 50, 0.08);
        }

        .pricing-tier-alacarte {
            border: none !important;
            background: transparent;
            padding: 1rem 1rem;
        }

        .pricing-tier-alacarte:hover {
            background: rgba(212, 168, 50, 0.08);
        }

        .alacarte-label {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .alacarte-note {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Online Coaching Section */
        .online-coaching {
            margin-top: 5rem;
            padding-top: 4rem;
            border-top: 1px solid rgba(61, 122, 90, 0.1);
        }

        .online-coaching-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .online-coaching-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--green-dark);
            margin-bottom: 1rem;
            padding: 0.5rem 1.25rem;
            background: rgba(61, 122, 90, 0.08);
            border-radius: 50px;
            position: relative;
        }

        .online-coaching-tag::before,
        .online-coaching-tag::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(61, 122, 90, 0.2));
        }

        .online-coaching-tag::before {
            right: calc(100% + 0.75rem);
        }

        .online-coaching-tag::after {
            left: calc(100% + 0.75rem);
            background: linear-gradient(90deg, rgba(61, 122, 90, 0.2), transparent);
        }

        .online-coaching-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .online-coaching-header h3 span {
            color: var(--green);
            font-style: italic;
        }

        .online-coaching-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

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

        .online-tier {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(61, 122, 90, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .online-tier::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green);
            opacity: 0.3;
        }

        .online-tier.featured {
            border-color: var(--green);
            box-shadow: 0 10px 40px rgba(61, 122, 90, 0.12);
        }

        .online-tier.featured::before {
            opacity: 1;
            background: linear-gradient(90deg, var(--green), #d4a832);
        }

        .online-tier:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(61, 122, 90, 0.1);
        }

        .tier-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            margin: -2rem -2rem 1.5rem -2rem;
            border-radius: 20px 20px 0 0;
        }

        .tier-image-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            position: absolute;
            top: 0;
            left: 0;
        }

        .tier-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-white) 0%, transparent 40%);
        }

        .tier-type-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.4rem 0.9rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--green-dark);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 50px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .tier-type-badge svg {
            width: 12px;
            height: 12px;
            fill: var(--green);
        }

        .tier-type {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
        }

        .tier-badge {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            background: rgba(61, 122, 90, 0.1);
            color: var(--green-dark);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .online-tier.featured .tier-badge {
            background: var(--green);
            color: white;
        }

        .tier-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .tier-tagline {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .tier-price {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--bg-cream);
        }

        .tier-price .amount {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 600;
            color: #d4a832;
            line-height: 1;
        }

        .tier-price .dollar {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: #d4a832;
        }

        .tier-price .period {
            font-size: 1rem;
            color: var(--text-muted);
            margin-left: 0.25rem;
        }

        .tier-features {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .tier-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .tier-features li svg {
            width: 16px;
            height: 16px;
            fill: var(--green);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .tier-cta {
            width: 100%;
            margin-top: 1.5rem;
        }

        .tier-cta .btn {
            width: 100%;
            justify-content: center;
        }

        .online-coaching-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Benefits Section - Premium Redesign */
        .benefits {
            background: linear-gradient(180deg, #fafafa 0%, #f5f5f0 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem;
        }

        .benefits-bg {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(61, 122, 90, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 168, 50, 0.03) 0%, transparent 50%);
        }

        .benefits-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
            align-items: center;
            position: relative;
            text-align: center;
        }

        .benefits-intro {
            max-width: 800px;
            padding: 0;
        }

        .benefits-intro .section-tag {
            margin-bottom: 1.25rem;
            color: #d4a832;
            background: linear-gradient(135deg, rgba(212, 168, 50, 0.1) 0%, rgba(212, 168, 50, 0.05) 100%);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            border: 1px solid rgba(212, 168, 50, 0.2);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        .benefits-intro h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }

        .benefits-intro h2 span {
            color: var(--green);
            font-style: italic;
            position: relative;
        }

        .benefits-intro h2 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(61, 122, 90, 0.15);
            z-index: -1;
        }

        .benefits-subtitle {
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.7;
            margin: 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            width: 100%;
            max-width: 1100px;
        }

        .benefit-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            text-align: center;
            border: 1px solid rgba(61, 122, 90, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(61, 122, 90, 0.2);
            box-shadow: 0 20px 40px rgba(61, 122, 90, 0.12);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            transition: all 0.4s;
        }

        .benefit-emoji {
            font-size: 2rem;
            line-height: 1;
        }

        .benefit-icon-1 {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border: 1px solid rgba(61, 122, 90, 0.15);
        }

        .benefit-icon-2 {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border: 1px solid rgba(255, 193, 7, 0.2);
        }

        .benefit-icon-3 {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            border: 1px solid rgba(233, 30, 99, 0.15);
        }

        .benefit-icon-4 {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border: 1px solid rgba(33, 150, 243, 0.15);
        }

        .benefit-icon-5 {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border: 1px solid rgba(255, 152, 0, 0.2);
        }

        .benefit-icon-6 {
            background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
            border: 1px solid rgba(156, 39, 176, 0.15);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
        }

        .benefit-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .benefit-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0;
        }

        .benefits-cta {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .benefits-cta-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
        }

        .btn-large {
            padding: 1.1rem 2.5rem;
            font-size: 1rem;
        }

        .benefits-cta .btn {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            box-shadow: 0 10px 30px rgba(45, 90, 71, 0.25);
        }

        .benefits-cta .btn:hover {
            box-shadow: 0 15px 40px rgba(45, 90, 71, 0.35);
            transform: translateY(-2px);
        }

        .benefits-cta-note {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* FAQ Section */
        .faq {
            background: var(--bg-cream);
            position: relative;
        }

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

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: 12px;
            border: 1px solid rgba(61, 122, 90, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(61, 122, 90, 0.15);
            box-shadow: 0 2px 12px rgba(61, 122, 90, 0.06);
        }

        .faq-item.active {
            border-color: var(--green);
            box-shadow: 0 4px 20px rgba(61, 122, 90, 0.1);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            gap: 1rem;
        }

        .faq-question h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.5;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            position: relative;
            background: rgba(61, 122, 90, 0.08);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--green);
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--green);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon::before,
        .faq-item.active .faq-icon::after {
            background: white;
        }

        .faq-icon::before {
            width: 12px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-icon::after {
            width: 2px;
            height: 12px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-item.active .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

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

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--bg-cream);
            position: relative;
            padding: 5rem 0 6rem;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--green-muted), transparent);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonial-carousel-wrapper {
            position: relative;
            margin: 3rem 0;
            padding: 0 4rem;
        }

        .testimonial-carousel {
            overflow: hidden;
            width: 100%;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 1.5rem;
        }

        /* Desktop: 3 cards */
        @media (min-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc((100% - 3rem) / 3);
                max-width: calc((100% - 3rem) / 3);
            }
        }

        /* Mobile: 1 card */
        @media (max-width: 1023px) {
            .testimonial-card {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        .testimonial-card {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(61, 122, 90, 0.08);
            position: relative;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .testimonial-card:hover {
            border-color: rgba(61, 122, 90, 0.2);
            box-shadow: 0 20px 40px rgba(61, 122, 90, 0.12);
            transform: translateY(-8px);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-white);
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--green);
            box-shadow: 0 8px 30px rgba(61, 122, 90, 0.25);
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-nav:hover svg {
            stroke: white;
        }

        .carousel-nav svg {
            width: 28px;
            height: 28px;
            stroke: var(--green);
            stroke-width: 2.5;
            transition: stroke 0.3s ease;
        }

        .carousel-prev {
            left: -28px;
        }

        .carousel-next {
            right: -28px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(61, 122, 90, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .carousel-dot:hover {
            background: rgba(61, 122, 90, 0.4);
            transform: scale(1.3);
        }

        .carousel-dot.active {
            background: var(--green);
            width: 32px;
            border-radius: 4px;
        }

        .testimonial-quote {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            line-height: 1;
            color: var(--green);
            opacity: 0.08;
            pointer-events: none;
        }

        .testimonial-stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.25rem;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: #FFB800;
            filter: drop-shadow(0 1px 2px rgba(255, 184, 0, 0.2));
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
            position: relative;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
        }

        .author-avatar.avatar-1 {
            background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
        }

        .author-avatar.avatar-2 {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        }

        .author-avatar.avatar-3 {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        }

        .author-avatar.avatar-4 {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }

        .author-avatar.avatar-5 {
            background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
        }

        .author-avatar.avatar-6 {
            background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
        }

        .author-avatar.avatar-7 {
            background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
        }

        .author-avatar.avatar-8 {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        }

        .author-avatar.avatar-9 {
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
        }

        /* Testimonials Footer */
        .testimonials-footer {
            margin-top: 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            padding: 2.5rem 3rem;
            background: var(--bg-white);
            border-radius: 24px;
            border: 1px solid rgba(61, 122, 90, 0.1);
        }

        .google-rating {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .google-stars {
            display: flex;
            gap: 0.25rem;
        }

        .google-stars svg {
            width: 24px;
            height: 24px;
            fill: #FFB800;
            filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.3));
        }

        .google-rating-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

        .testimonials-footer .benefits-cta {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .testimonials-footer .benefits-cta-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
        }

        .reviews-cta p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .reviews-cta .btn-google {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: white;
            border: 2px solid #4285f4;
            border-radius: 50px;
            color: #4285f4;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .reviews-cta .btn-google:hover {
            background: #4285f4;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
        }

        .reviews-cta .btn-google svg {
            width: 24px;
            height: 24px;
        }

        .author-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .author-info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Contact Section */
        .contact {
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .contact-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 70%, rgba(61, 122, 90, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(139, 171, 154, 0.08) 0%, transparent 50%);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            position: relative;
        }

        .contact-info {
            padding: 2rem 0;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .contact-info h2 span {
            color: var(--green);
            font-style: italic;
        }

        .contact-info > p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--green-pale);
            border: 1px solid var(--green-muted);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--green);
        }

        .contact-item-text span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.25rem;
        }

        .contact-item-text p {
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .contact-social {
            display: flex;
            gap: 1rem;
            margin-top: 3rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border: 1px solid rgba(61, 122, 90, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: var(--text-secondary);
            transition: fill 0.3s;
        }

        .social-link:hover {
            background: var(--green);
            border-color: var(--green);
            transform: translateY(-3px);
        }

        .social-link:hover svg {
            fill: white;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--bg-cream);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(61, 122, 90, 0.1);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            background: var(--bg-white);
            border: 1px solid rgba(61, 122, 90, 0.2);
            border-radius: 12px;
            padding: 1.125rem 1.25rem;
            font-size: 1rem;
            font-family: inherit;
            color: var(--text-primary);
            transition: all 0.3s;
            width: 100%;
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.25rem center;
            padding-right: 3rem;
            cursor: pointer;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--green);
            background: var(--green-pale);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

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

        .btn-submit {
            width: 100%;
            justify-content: center;
            margin-top: 0.5rem;
        }

        #formFields {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .form-success-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            min-height: 300px;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(61, 122, 90, 0.1) 0%, rgba(90, 154, 119, 0.08) 100%);
            border: 1px solid rgba(61, 122, 90, 0.2);
            border-radius: 16px;
            text-align: center;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .form-success-message .success-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: var(--green);
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            font-weight: 600;
            flex-shrink: 0;
            box-shadow: 0 4px 20px rgba(61, 122, 90, 0.3);
        }

        .form-success-message p {
            color: var(--green-dark);
            font-size: 1.15rem;
            line-height: 1.6;
            margin: 0;
            max-width: 500px;
        }

        /* Footer */
        footer {
            background: var(--bg-cream);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(61, 122, 90, 0.1);
        }

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

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            flex: 0 0 auto;
            max-width: 320px;
        }

        .footer-brand img {
            height: 45px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        .footer-nav {
            display: flex;
            gap: 5rem;
        }

        .footer-column h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
        }

        .footer-column p,
        .footer-column a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 2;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--green);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(61, 122, 90, 0.2), transparent);
            margin-bottom: 1.5rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(61, 122, 90, 0.08);
            color: var(--green);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--green);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .spec-cards-grid {
                grid-template-columns: 1fr;
                padding-top: 2rem;
                max-width: 450px;
                margin: 0 auto;
            }

            .spec-card {
                height: 320px;
                margin-top: 3rem;
            }

            .spec-card:first-child {
                margin-top: 0;
            }

            /* Reposition connectors for vertical layout */
            .spec-card-connector {
                top: -16px;
                left: 50%;
                transform: translateX(-50%);
                width: auto;
                height: auto;
            }

            .connector-dot {
                position: relative;
            }

            .connector-line {
                position: absolute;
                left: 50%;
                top: 100%;
                transform: translateX(-50%);
                width: 3px;
                height: 3rem;
                background: linear-gradient(180deg, currentColor, transparent);
            }

            .spec-card--green .connector-line {
                background: linear-gradient(180deg, rgba(90, 157, 115, 0.3), transparent);
            }

            .spec-card--rose .connector-line {
                background: linear-gradient(180deg, rgba(33, 150, 243, 0.3), transparent);
            }

            .spec-card--gold .connector-line {
                background: linear-gradient(180deg, rgba(212, 165, 32, 0.3), transparent);
            }

            /* Hide line on last card */
            .spec-card:last-child .connector-line {
                display: none;
            }

            .footer-top {
                flex-direction: column;
                gap: 2.5rem;
            }

            .footer-brand {
                max-width: 100%;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-nav {
                width: 100%;
                justify-content: center;
                gap: 4rem;
            }
        }

        @media (max-width: 600px) {
            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-nav {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

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

            .footer-social {
                order: -1;
            }
        }

        /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Stagger children */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stagger-children.active > *:nth-child(1) { transition-delay: 0.2s; }
        .stagger-children.active > *:nth-child(2) { transition-delay: 0.6s; }
        .stagger-children.active > *:nth-child(3) { transition-delay: 1.0s; }
        .stagger-children.active > *:nth-child(4) { transition-delay: 1.4s; }

        .stagger-children.active > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* Medium Screen Collage Adjustment */
        @media (min-width: 769px) and (max-width: 1200px) {
            .about-grid {
                align-items: start;
            }

            .about-image-wrapper {
                height: 600px;
            }

            .collage-image-1 {
                width: 250px;
                height: 330px;
            }

            .collage-image-2 {
                width: 190px;
                height: 250px;
                left: -30px;
                top: -20px;
            }

            .collage-image-3 {
                width: 170px;
                height: 230px;
                right: -30px;
                top: 0;
            }

            .collage-image-4 {
                width: 200px;
                height: 200px;
                right: -20px;
                bottom: 0;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits {
                padding: 6rem 2rem;
            }

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

            .benefits-stats {
                flex-wrap: wrap;
            }

            .about-grid {
                gap: 4rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-stats {
                gap: 3rem;
            }

            /* Show hamburger menu on tablet */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--bg-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.25rem;
                color: var(--text-primary);
            }

            .hamburger {
                display: flex;
            }
        }

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

            .hero {
                padding-top: 80px;
            }

            .hero-content {
                padding: 0 1.5rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .hero-cta .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 0;
                margin-top: 3rem;
                padding: 1rem 1.5rem;
            }

            .hero-stat {
                padding: 1rem 0;
            }

            .hero-stat::before {
                display: none;
            }

            .hero-stat::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 1px;
                background: rgba(61, 122, 90, 0.15);
            }

            .hero-stat:last-child::after {
                display: none;
            }

            .hero-accent {
                transform: scale(0.35);
            }

            .hero-accent-1 {
                background: radial-gradient(circle, rgba(61, 122, 90, 0.15) 0%, transparent 70%);
                right: -150px;
            }


            .about-grid {
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }

            .about-stats {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 1.5rem;
                justify-content: center;
                width: 100%;
            }

            .about-image-wrapper {
                float: none;
                width: 100%;
                order: 2;
                flex-shrink: 0;
                height: auto;
                max-width: 500px;
                margin: 0 auto;
                padding: 0;
                background: none;
                border-radius: 0;
                border: none;
                shape-outside: none;
                transform: none !important;
                opacity: 1 !important;
            }

            /* Fix for text wrapping and layout */
            .about-content {
                display: block !important; /* Override display: contents */
                width: 100%;
                order: 1;
                transform: none !important; /* Prevent BFC/Transform issues */
                opacity: 1 !important;
                text-align: center;
            }

            .about-collage {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                position: relative;
                height: auto;
            }

            .collage-image {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                transform: none !important; /* Remove rotation to fix squished look */
                border-radius: 8px;
                border: 2px solid white;
                box-shadow: 0 4px 12px rgba(61, 122, 90, 0.15);
                margin: 0 !important;
                width: 100% !important;
                height: 200px !important;
                object-fit: cover;
            }

            .collage-image:hover {
                transform: scale(1.02) !important;
            }

            .collage-image-1 {
                grid-column: span 2;
                height: 300px !important;
            }

            .collage-image-2 {
                height: 200px !important;
            }

            .collage-image-2 img {
                object-position: 70% 20%;
            }

            .collage-image-3 {
                height: 200px !important;
            }

            .collage-image-3 img {
                object-position: center 15%;
            }

            .collage-image-4 {
                grid-column: span 2;
                height: 200px !important;
            }

            .about-content .section-tag {
                display: inline-block;
                max-width: 100%;
            }

            .about-content h3,
            .about-content p {
                display: block;
                width: 100%;
            }

            .about-highlights {
                clear: both;
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .about-content .btn {
                clear: both;
                display: flex;
                width: 100%;
                justify-content: center;
            }

            .spec-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding-top: 2rem;
            }

            .spec-card {
                height: 280px;
                margin-top: 2.5rem;
            }

            .spec-card:first-child {
                margin-top: 0;
            }

            .spec-card-content {
                padding: 1.5rem 1.25rem;
            }

            .spec-card-content h3 {
                font-size: 1.3rem;
            }

            .spec-card-btn {
                width: 42px;
                height: 42px;
                bottom: 1.25rem;
                right: 1.25rem;
            }

            .spec-card-btn svg {
                width: 20px;
                height: 20px;
            }

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

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-carousel-wrapper {
                padding: 0 1.5rem;
            }

            .carousel-nav {
                display: none;
            }

            .testimonials-footer {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .testimonials-footer .benefits-cta {
                flex-direction: column;
                gap: 1rem;
            }

            .online-coaching {
                padding: 2rem 1.5rem;
                margin-top: 3rem;
            }

            .online-coaching-header h3 {
                font-size: 1.5rem;
            }

            .online-tiers {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .online-tier {
                padding: 1.75rem;
            }

            .tier-name {
                font-size: 1.5rem;
            }

            .tier-price .amount {
                font-size: 2.5rem;
            }

            .benefits {
                padding: 5rem 1.5rem;
            }

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

            .benefits-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .benefit-stat {
                padding: 0.75rem 1rem;
            }

            .faq-question {
                padding: 1.25rem;
            }

            .faq-question h4 {
                font-size: 0.95rem;
            }

            .faq-answer p {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.9rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            section {
                padding: 5rem 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }

            .hero-circles {
                opacity: 0.7;
            }

            .circle-1 {
                width: 300px;
                height: 300px;
                top: -5%;
                right: -10%;
            }

            .circle-2 {
                width: 200px;
                height: 200px;
                top: 15%;
                left: -15%;
            }

            .circle-3 {
                width: 350px;
                height: 350px;
                bottom: -10%;
                right: -20%;
            }

            .circle-4 {
                width: 150px;
                height: 150px;
                top: 40%;
                left: 5%;
            }

            .circle-5 {
                width: 250px;
                height: 250px;
                bottom: 10%;
                left: -10%;
            }

            .circle-6 {
                width: 180px;
                height: 180px;
                top: 70%;
                right: 5%;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .about-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .stat-item {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .hero-stats {
                gap: 0;
            }

            .hero-stat-text strong {
                font-size: 2.25rem;
            }
        }

        /* Very small screens - Galaxy Fold cover screen, etc. */
        @media (max-width: 360px) {
            .about-grid {
                flex-direction: column;
            }

            section {
                padding: 3rem 1rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .hero-cta .btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.85rem;
            }

            .hero-stats {
                padding: 1rem;
                margin-top: 2rem;
            }

            .hero-stat-text strong {
                font-size: 1.75rem;
            }

            .hero-stat-text {
                font-size: 0.7rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-tag {
                font-size: 0.65rem;
                padding: 0.4rem 1rem;
            }

            .btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.85rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            /* About section collage for tiny screens */
            .about-image-wrapper {
                float: none;
                width: 100%;
                order: 2;
                margin: 0 0 1.5rem 0;
            }

            .about-content {
                width: 100%;
                order: 1;
                text-align: center;
            }

            .about-collage {
                display: grid;
                gap: 0.5rem;
            }

            .collage-image {
                width: 100% !important;
                height: 150px !important;
                margin: 0 !important;
            }

            .about-content .section-tag {
                max-width: 100%;
            }

            .about-content h3 {
                font-size: 1.5rem;
            }

            .about-content p {
                font-size: 0.9rem;
            }

            .about-highlights {
                gap: 0.5rem;
            }

            .highlight-item {
                font-size: 0.8rem;
                padding: 0.4rem 0;
            }

            /* Services */
            .service-card {
                padding: 1.25rem;
            }

            .service-image {
                height: 200px;
                min-height: 200px;
            }

            .service-title {
                font-size: 1.1rem;
            }

            .service-price .price-amount {
                font-size: 1.75rem;
            }

            .service-price .price-label {
                font-size: 1.1rem;
            }

            /* Online Coaching */
            .online-coaching {
                padding: 1.5rem 1rem;
                margin-top: 2rem;
            }

            .online-coaching-header h3 {
                font-size: 1.25rem;
            }

            .online-coaching-header p {
                font-size: 0.9rem;
            }

            .online-tier {
                padding: 1.25rem;
            }

            .tier-name {
                font-size: 1.25rem;
            }

            .tier-price .amount {
                font-size: 2rem;
            }

            .tier-features li {
                font-size: 0.85rem;
            }

            /* Benefits */
            .benefit-card {
                padding: 1.25rem;
            }

            .benefit-title {
                font-size: 1rem;
            }

            /* FAQ */
            .faq-question {
                padding: 1rem;
            }

            .faq-question h4 {
                font-size: 0.85rem;
            }

            .faq-answer p {
                padding: 0 1rem 1rem;
                font-size: 0.85rem;
            }

            /* Testimonials */
            .testimonials {
                padding: 3rem 0 4rem;
            }

            .testimonials-container {
                padding: 0 1rem;
            }

            .testimonial-carousel-wrapper {
                padding: 0 1rem;
            }

            .testimonial-card {
                padding: 1.75rem 1.5rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }


            .carousel-dots {
                margin-top: 2rem;
            }

            .testimonial-quote {
                font-size: 3rem;
                top: 0.75rem;
                right: 0.75rem;
            }

            .testimonial-stars {
                margin-bottom: 1rem;
            }

            .testimonial-author {
                margin-top: 1.25rem;
            }

            .testimonials-footer {
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .google-rating {
                flex-direction: column;
                gap: 0.75rem;
            }

            .google-rating-text {
                font-size: 0.95rem;
            }

            .testimonials-footer .benefits-cta-text {
                font-size: 1rem;
            }

            /* Contact form */
            .contact-form-wrapper {
                padding: 1.25rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.75rem;
                font-size: 0.9rem;
            }

            .btn-submit {
                padding: 0.875rem 1rem;
                font-size: 0.9rem;
            }

            /* Mobile responsive adjustments for pricing elements */
            .pricing-contract-header {
                font-size: 0.8rem;
            }

            .pricing-contract-terms {
                font-size: 0.7rem;
            }

            .pricing-contract-note {
                font-size: 0.6rem;
            }

        }
/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--green);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
            }
        }

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 2rem;
    padding: 0.25rem;
    background: rgba(61, 122, 90, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(61, 122, 90, 0.12);
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--green-dark);
    background: rgba(61, 122, 90, 0.08);
}

.lang-btn.active {
    background: var(--green);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(61, 122, 90, 0.3);
}

.lang-divider {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Language Switcher - Tablet & Mobile */
@media (max-width: 1024px) {
    .lang-switcher {
        position: absolute;
        top: 50%;
        right: 7rem;
        transform: translateY(-50%);
        margin: 0;
        padding: 0.2rem;
        gap: 0.2rem;
    }

    .lang-btn {
        padding: 0.35rem 0.55rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        right: 5.5rem;
        gap: 0.15rem;
        padding: 0.15rem;
    }

    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* ===========================
   How It Works - Pricing Steps
   =========================== */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 1rem auto 4rem;
    padding: 0;
    position: relative;
}

.hiw-step {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(61, 122, 90, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.hiw-step:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(61, 122, 90, 0.12), 0 0 0 1px rgba(61, 122, 90, 0.05);
}

/* Highlighted step (step 2) - gold accent, slightly elevated */
.hiw-step--highlight {
    border-color: rgba(212, 168, 50, 0.4);
    background: linear-gradient(180deg, rgba(212, 168, 50, 0.03) 0%, #ffffff 50%);
    box-shadow: 0 6px 24px rgba(212, 168, 50, 0.1);
    transform: scale(1.04);
}

.hiw-step--highlight:hover {
    border-color: #d4a832;
    box-shadow: 0 16px 40px rgba(212, 168, 50, 0.15), 0 0 0 1px rgba(212, 168, 50, 0.05);
    transform: scale(1.04) translateY(-8px);
}

/* Step 3 - blue accent */
.hiw-step--red {
    border-color: rgba(33, 150, 243, 0.3);
    background: linear-gradient(180deg, rgba(33, 150, 243, 0.03) 0%, #ffffff 50%);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.06);
}

.hiw-step--red:hover {
    border-color: #2196f3;
    box-shadow: 0 16px 40px rgba(33, 150, 243, 0.12), 0 0 0 1px rgba(33, 150, 243, 0.05);
}

/* Emoji icon container */
.hiw-step-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin: 0 auto 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-emoji {
    font-size: 1.75rem;
    line-height: 1;
}

.hiw-step:hover .hiw-step-icon {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.hiw-icon-1 {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid rgba(61, 122, 90, 0.15);
}

.hiw-icon-2 {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe082 100%);
    border: 1px solid rgba(212, 168, 50, 0.2);
}

.hiw-icon-3 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid rgba(33, 150, 243, 0.15);
}

/* Step number badge — filled, half in / half out */
.hiw-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark, #2d5a47) 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(61, 122, 90, 0.3);
    z-index: 3;
}

.hiw-step--highlight .hiw-step-number {
    background: linear-gradient(135deg, #d4a832 0%, #b8922a 100%);
    box-shadow: 0 2px 8px rgba(212, 168, 50, 0.35);
}

.hiw-step--red .hiw-step-number {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.35);
}

.hiw-step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

/* Bullet list */
.hiw-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hiw-step-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding: 0.45rem 0 0.45rem 1.4rem;
    position: relative;
}

.hiw-step-list li:last-child {
    border-bottom: none;
}

.hiw-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(61, 122, 90, 0.1);
}

.hiw-step--highlight .hiw-step-list li::before {
    background: #d4a832;
    box-shadow: 0 0 0 3px rgba(212, 168, 50, 0.1);
}

.hiw-step--red .hiw-step-list li::before {
    background: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.hiw-bullet {
    font-weight: 600;
    color: var(--text-primary);
}

/* HIW scroll-in animations — override stagger-children defaults */
.how-it-works > .hiw-step {
    transition: none;
}

.how-it-works.active > .hiw-step {
    transition: none;
}

.how-it-works.active .hiw-step {
    animation: hiwCardIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.how-it-works.active .hiw-step:nth-child(1) { animation-delay: 0.15s; }
.how-it-works.active .hiw-step:nth-child(2) { animation-name: hiwCardInCenter; animation-delay: 0.35s; }
.how-it-works.active .hiw-step:nth-child(3) { animation-delay: 0.55s; }

.how-it-works.active .hiw-step-number {
    animation: hiwBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.how-it-works.active .hiw-step:nth-child(1) .hiw-step-number { animation-delay: 0.55s; }
.how-it-works.active .hiw-step:nth-child(2) .hiw-step-number { animation-delay: 0.75s; }
.how-it-works.active .hiw-step:nth-child(3) .hiw-step-number { animation-delay: 0.95s; }

.how-it-works.active .hiw-step-icon {
    animation: hiwIconIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.how-it-works.active .hiw-step:nth-child(1) .hiw-step-icon { animation-delay: 0.45s; }
.how-it-works.active .hiw-step:nth-child(2) .hiw-step-icon { animation-delay: 0.65s; }
.how-it-works.active .hiw-step:nth-child(3) .hiw-step-icon { animation-delay: 0.85s; }

@keyframes hiwCardIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hiwCardInCenter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1.04);
    }
}

@keyframes hiwBadgePop {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes hiwIconIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin-bottom: 3rem;
    }

    .hiw-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        text-align: left;
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    }

    .hiw-step-icon {
        grid-row: 1 / 3;
        grid-column: 1;
        margin: 0;
        align-self: center;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .hiw-emoji {
        font-size: 1.5rem;
    }

    .hiw-step-number {
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        border-width: 2px;
    }

    .hiw-step-title {
        grid-column: 2;
        margin-bottom: 0.35rem;
        font-size: 1rem;
    }

    .hiw-step-list {
        grid-column: 2;
    }

    .hiw-step-list li {
        font-size: 0.85rem;
        padding: 0.25rem 0 0.25rem 1rem;
    }

    .hiw-step-list li::before {
        width: 4px;
        height: 4px;
    }
}

