        :root {
            --green-primary: #9bd75d;
            --green-light: #e0e47c;
            --green-dark: #78a847;
            --green-bright: #fbff93;
            --yellow: #e0e47c;
            --yellow-light: #fbff93;
            --black: #000000;
            --dark: #111111;
            --gray-dark: #1a1a1a;
            --gray: #aaaaaa;
            --white: #ffffff;
            --text-dark: #000000;
            --text-light: rgba(0, 0, 0, 0.6);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--green-primary);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--black);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
        }

        .cursor.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: var(--yellow);
            border-color: var(--yellow);
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translate(-50%, -50%);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(34, 197, 94, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.75rem 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--black);
        }

        .logo svg {
            width: 45px;
            height: 45px;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

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

        .nav-links li {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--black);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            transform: scaleX(1);
            transform-origin: left;
        }

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

        .nav-links .dropdown > .nav-link-wrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .nav-links .dropdown > .nav-link-wrapper svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }

        .nav-links .dropdown:hover > .nav-link-wrapper svg {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--black);
            border-radius: 16px;
            padding: 0.75rem 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 100;
        }

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

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--white) !important;
            font-size: 0.85rem;
            text-transform: none;
            letter-spacing: 0;
            transition: all 0.3s ease;
        }

        .dropdown-menu a::before {
            display: none;
        }

        .dropdown-menu a:hover {
            background: var(--green-primary);
            color: var(--black) !important;
            padding-left: 1.75rem;
        }

        .lang-switch {
            display: flex;
            gap: 0.25rem;
            padding: 0.25rem;
            background: var(--black);
            border-radius: 30px;
        }

        .lang-switch a {
            padding: 0.5rem 1rem;
            color: var(--white);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .lang-switch a.active {
            background: var(--green-bright);
            color: var(--black);
        }

        .lang-switch a:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 28px;
            height: 3px;
            background: var(--black);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--green-primary);
            padding: 6rem 2rem 2rem;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }

        .mobile-nav a {
            color: var(--black);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .mobile-nav .mobile-dropdown-items a {
            font-size: 1rem;
            opacity: 0.7;
        }

        /* Hero Section */
        .hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10rem 2rem 6rem;
            background: var(--green-primary);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .hero-bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        .hero-bg-element:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--black);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .hero-bg-element:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--yellow);
            bottom: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        .hero-bg-element:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--green-dark);
            top: 50%;
            left: 50%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(5deg); }
            50% { transform: translateY(0) rotate(0deg); }
            75% { transform: translateY(20px) rotate(-5deg); }
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--black);
            color: var(--green-bright);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            animation: fadeInDown 0.8s ease;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--green-bright);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero h1 .highlight {
            color: var(--black);
            position: relative;
            display: inline-block;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 0.1em;
            left: 0;
            width: 100%;
            height: 0.15em;
            background: var(--yellow);
            z-index: -1;
        }

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

        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto;
            font-weight: 500;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        /* Section Styles */
        section {
            padding: 7rem 2rem;
        }

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

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

        .section-tag {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: var(--black);
            color: var(--green-bright);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            line-height: 1;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 1.5rem auto 0;
            font-weight: 500;
        }

        /* Services Grid */
        #services-grid {
            background: var(--green-light);
        }

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

        .service-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--yellow);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .service-card:hover {
            border-color: var(--black);
            transform: translateY(-10px);
        }

        .service-card:hover::before {
            transform: translateY(0);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--green-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--black);
            transform: rotate(-5deg) scale(1.1);
        }

        .service-card:hover .service-icon svg {
            stroke: var(--green-bright);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            transition: color 0.4s ease;
            flex-grow: 1;
        }

        .service-card:hover p {
            color: var(--text-dark);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--black);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .service-link svg {
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        .service-link:hover svg {
            transform: translateX(5px);
        }

        /* CTA Section */
        #cta {
            background: var(--black);
            padding: 7rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        #cta::before {
            content: 'SEO';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 25vw;
            font-weight: 900;
            color: var(--green-primary);
            opacity: 0.05;
            letter-spacing: -0.05em;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        #cta h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: -0.03em;
        }

        #cta p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-weight: 500;
        }

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

        .btn-primary {
            background: var(--green-bright);
            color: var(--black);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--yellow);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .btn-primary:hover::before {
            left: 0;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 5rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-brand .logo-text {
            color: var(--white);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-column h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--green-bright);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-column a:hover {
            color: var(--green-bright);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

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

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

        @media (max-width: 768px) {
            .cursor, .cursor-follower {
                display: none;
            }

            header {
                padding: 1rem;
            }

            .nav-links, .lang-switch {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 8rem 1.5rem 4rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            section {
                padding: 5rem 1.5rem;
            }

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

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

        /* Animations on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
        .animate-on-scroll.delay-5 { transition-delay: 0.5s; }
        .animate-on-scroll.delay-6 { transition-delay: 0.6s; }

        /* ===== Page-specific additions (Dentists industry) ===== */
        /* Accent override: #5dd7c4 as secondary accent */
        .hero-badge { background: #5dd7c4; color: #000; }
        .hero h1 .highlight::after { background: #5dd7c4; }
        .ind-icon { background: #5dd7c4; }

        /* Prose / narrative blocks */
        .prose-section { background: var(--green-primary); }
        .prose-section.alt { background: var(--green-light); }
        .prose {
            max-width: 820px;
            margin: 0 auto;
        }
        .prose p {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 1.4rem;
            font-weight: 500;
        }
        .prose h3 {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin: 2rem 0 1rem;
        }
        .prose ul {
            margin: 0 0 1.6rem 1.2rem;
        }
        .prose ul li {
            font-size: 1.08rem;
            color: var(--text-dark);
            margin-bottom: 0.7rem;
            font-weight: 500;
        }

        /* Full-width image band */
        .img-band {
            padding: 0;
            background: var(--green-primary);
        }
        .img-band img {
            display: block;
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }

        /* Feature grid (sub-specialties / local seo) */
        .ind-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .ind-card {
            background: var(--white);
            border-radius: 18px;
            padding: 2rem;
            border: 3px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .ind-card:hover {
            border-color: var(--black);
            transform: translateY(-8px);
        }
        .ind-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .ind-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .ind-card p {
            color: var(--text-light);
            font-size: 0.98rem;
            line-height: 1.65;
            font-weight: 500;
        }

        /* Process steps */
        .steps { max-width: 900px; margin: 0 auto; }
        .step {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            background: var(--white);
            border-radius: 18px;
            padding: 1.75rem 2rem;
            margin-bottom: 1.25rem;
        }
        .step-num {
            flex: 0 0 auto;
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: #5dd7c4;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.4rem;
        }
        .step h3 {
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 0.4rem;
        }
        .step p {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
        }

        /* KPI row */
        .kpi-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .kpi {
            background: var(--black);
            color: var(--white);
            border-radius: 18px;
            padding: 1.75rem;
            text-align: center;
        }
        .kpi strong {
            display: block;
            font-size: 2.2rem;
            font-weight: 900;
            color: #5dd7c4;
            letter-spacing: -0.02em;
        }
        .kpi span {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }

        /* FAQ accordion */
        .faq { max-width: 820px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 3px solid transparent;
            transition: border-color 0.3s ease;
        }
        .faq-item.open { border-color: #5dd7c4; }
        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            padding: 1.5rem 1.75rem;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .faq-q svg {
            flex: 0 0 auto;
            transition: transform 0.3s ease;
        }
        .faq-item.open .faq-q svg { transform: rotate(45deg); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.75rem;
        }
        .faq-item.open .faq-a {
            max-height: 400px;
            padding: 0 1.75rem 1.5rem;
        }
        .faq-a p {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .ind-grid { grid-template-columns: repeat(2, 1fr); }
            .kpi-row { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .ind-grid { grid-template-columns: 1fr; }
            .kpi-row { grid-template-columns: 1fr 1fr; }
            .step { flex-direction: column; gap: 1rem; }
        }
