        :root {
            --brand-green: #85B746;
            --text-main: #1f2937;
            --text-soft: #374151;
            --surface: #ffffff;
            --border-soft: #e5e7eb;
            --section-side-pad: clamp(18px, 6vw, 72px);
            --content-max-width: 1200px;
        }

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

        html,
        body {
            overflow-x: hidden;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: #ffffff;
            color: var(--text-main);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        p, a, li, button, input, span {
            font-family: 'Manrope', sans-serif;
        }

        .page-shell {
            min-height: 100vh;
            padding: 0;
        }

        .navbar-wrap {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            max-width: none;
            margin: 0 auto;
            background: transparent;
            border-bottom: 1px solid transparent;
            border-radius: 0;
            box-shadow: none;
            padding: 14px var(--section-side-pad);
            transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .navbar-wrap.is-scrolled {
            background: #ffffff;
            border-bottom-color: rgba(229, 231, 235, 0.7);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
        }

        .navbar-wrap:not(.is-scrolled) .nav-links a {
            color: #ffffff;
        }

        .navbar-wrap:not(.is-scrolled) .nav-links a:hover {
            color: rgba(255, 255, 255, 0.82);
        }

        .navbar-wrap:not(.is-scrolled) .quote-btn {
            background: transparent;
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.55);
        }

        .navbar-wrap:not(.is-scrolled) .quote-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.85);
            box-shadow: none;
        }

        .section-shell {
            max-width: none;
            margin: 0 auto;
        }

        .section-shell > section {
            margin: 0;
        }

        .navbar {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            list-style: none;
            margin-left: auto;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 16px;
            font-weight: 600;
            transition: color 0.25s ease;
        }

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

        .brand {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
        }

        .brand img {
            width: 180px;
            height: auto;
            display: block;
        }

        .nav-actions {
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .quote-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            border: 1px solid transparent;
            border-radius: 12px;
            background: var(--brand-green);
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.1px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .quote-btn:hover {
            background: #6fa038;
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(133, 183, 70, 0.2);
        }

        .quote-btn span {
            font-size: 18px;
            line-height: 1;
        }

        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            border-radius: 0;
            overflow: hidden;
            padding: 0 var(--section-side-pad);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            isolation: isolate;
            background-color: #0e1620;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(92deg, rgba(9, 14, 20, 0.84) 0%, rgba(9, 14, 20, 0.62) 33%, rgba(9, 14, 20, 0.24) 62%, rgba(9, 14, 20, 0.12) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
        }

        .hero-content {
            max-width: 680px;
            color: #ffffff;
            position: relative;
            z-index: 2;
            padding-top: 72px;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.88);
            font-size: 15px;
            line-height: 1.45;
            font-family: 'Manrope', sans-serif;
            font-weight: 400;
            letter-spacing: 0.2px;
            margin-bottom: 14px;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 3.6vw, 54px);
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: -0.4px;
            margin-bottom: 22px;
        }

        .hero-copy {
            max-width: 640px;
            color: rgba(255, 255, 255, 0.88);
            font-size: 18px;
            line-height: 1.55;
            margin-bottom: 14px;
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
        }

        .hero-copy:last-of-type {
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
            padding: 16px 28px;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .hero-btn.primary {
            background: var(--brand-green);
            color: #ffffff;
            border-color: var(--brand-green);
        }

        .hero-btn.primary:hover {
            background: #6fa038;
            border-color: #6fa038;
            transform: translateY(-1px);
        }

        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
        }

        .hero-avatar-stack {
            display: flex;
            align-items: center;
        }

        .hero-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.95);
            margin-left: -8px;
            position: relative;
            background: #ffffff;
        }

        .hero-avatar:first-child {
            margin-left: 0;
            z-index: 1;
        }

        .hero-avatar:nth-child(2) { z-index: 2; }
        .hero-avatar:nth-child(3) { z-index: 3; }

        .hero-avatar-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            margin-left: -8px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.95);
            background: #eef2f7;
            color: var(--brand-green);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: -0.2px;
            position: relative;
            z-index: 4;
            flex-shrink: 0;
        }

        .hero-social-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
        }

        .about-section {
            padding: 96px var(--section-side-pad);
            background: #ffffff;
        }

        .about-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 28px;
        }

        .about-kicker {
            color: var(--brand-green);
            font-size: 26px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .about-title {
            color: #0f172a;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 3vw, 44px);
            line-height: 1.12;
            letter-spacing: -0.4px;
            font-weight: 600;
            max-width: 760px;
            margin-bottom: 14px;
        }

        .about-copy {
            max-width: 720px;
            color: #4b5563;
            font-size: 17px;
            line-height: 1.6;
            font-weight: 500;
        }

        .about-slider {
            margin-top: 36px;
            --about-slider-gap: 16px;
            --about-slide-width: calc((100% - (3 * var(--about-slider-gap))) / 4);
        }

        .about-slider-viewport {
            overflow: hidden;
            width: 100%;
        }

        .about-slider-track {
            display: flex;
            gap: var(--about-slider-gap);
            width: max-content;
            will-change: transform;
        }

        .about-slide {
            flex: 0 0 var(--about-slide-width);
            border-radius: 14px;
            overflow: hidden;
            background: #f3f6f9;
            border: 1px solid #e8edf3;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .about-slide img {
            width: 100%;
            height: 100%;
            min-height: 280px;
            object-fit: contain;
            display: block;
        }

        .services-section {
            padding: 90px var(--section-side-pad);
            background: #F6F8FB;
        }

        .services-head {
            max-width: 100%;
            margin: 0 auto 34px;
            text-align: center;
        }

        .services-kicker {
            color: var(--brand-green);
            font-size: 24px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .services-title {
            color: #0f172a;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(26px, 2.35vw, 38px);
            line-height: 1.12;
            font-weight: 600;
            letter-spacing: -0.4px;
            margin-bottom: 14px;
            white-space: nowrap;
        }

        .services-copy {
            max-width: 640px;
            margin: 0 auto;
            color: #4b5563;
            font-size: 18px;
            line-height: 1.55;
            font-weight: 500;
        }

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

        .service-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 36px 28px 34px;
            min-height: 330px;
            border: 1px solid #edf0f5;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }

        .service-card.featured {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #ffffff;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 999px;
            background: #eef6e4;
            color: #6fa038;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 20px;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
        }

        .service-card.featured .service-icon {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
        }

        .service-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            line-height: 1.06;
            color: #111827;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-card.featured .service-name {
            color: #ffffff;
        }

        .service-desc {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 500;
            max-width: 320px;
            margin-bottom: 26px;
        }

        .service-card.featured .service-desc {
            color: rgba(255, 255, 255, 0.86);
        }

        .service-link {
            margin-top: auto;
            color: #111827;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            text-decoration: none;
        }

        .service-card.featured .service-link {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .why-choose-section {
            width: 100%;
            padding: 28px 0;
            background: #0f172a;
            overflow: hidden;
        }

        .why-choose-marquee {
            overflow: hidden;
            width: 100%;
        }

        .why-choose-viewport {
            overflow: hidden;
            width: 100%;
        }

        .why-choose-track {
            list-style: none;
            display: flex;
            align-items: stretch;
            gap: 16px;
            width: max-content;
            will-change: transform;
        }

        .why-choose-track li {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 0 8px;
            background: none;
            border: none;
            border-radius: 0;
            color: rgba(255, 255, 255, 0.94);
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 2.2vw, 32px);
            font-style: italic;
            line-height: 1.35;
            font-weight: 500;
            white-space: nowrap;
        }

        .why-choose-track li span[aria-hidden="true"] {
            color: #a8d86a;
            font-family: 'Manrope', sans-serif;
            font-size: clamp(20px, 1.8vw, 28px);
            font-style: normal;
            line-height: 1;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-section {
            width: 100%;
            padding: 72px 0 80px;
            background: #f6f8fb;
            overflow: hidden;
        }

        .testimonial-head {
            text-align: center;
            padding: 0 var(--section-side-pad);
            margin-bottom: 36px;
        }

        .testimonial-kicker {
            color: var(--brand-green);
            font-size: 24px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .testimonial-title {
            color: #0f172a;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 56px);
            line-height: 1.08;
            letter-spacing: -0.4px;
            font-weight: 600;
            max-width: 720px;
            margin: 0 auto;
        }

        .testimonial-marquee {
            overflow: hidden;
            width: 100%;
            --testimonial-gap: 20px;
        }

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

        .testimonial-track {
            display: flex;
            gap: var(--testimonial-gap);
            width: max-content;
            will-change: transform;
        }

        .testimonial-card {
            flex: 0 0 var(--testimonial-card-width);
            background: #ffffff;
            border: 1px solid #e8edf3;
            border-radius: 18px;
            padding: 28px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        }

        .testimonial-card-quote {
            color: #374151;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(20px, 1.8vw, 26px);
            font-style: italic;
            line-height: 1.45;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .testimonial-card-author {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: auto;
        }

        .testimonial-card-avatar {
            width: 56px;
            height: 56px;
            border-radius: 999px;
            object-fit: cover;
            border: 2px solid #ffffff;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
            flex-shrink: 0;
        }

        .testimonial-card-name {
            font-size: 18px;
            color: #111827;
            font-family: 'Manrope', sans-serif;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testimonial-card-role {
            font-size: 14px;
            color: #6b7280;
            font-family: 'Manrope', sans-serif;
            line-height: 1.3;
            font-weight: 500;
        }

        .faq-section {
            background: #ffffff;
            padding: 90px var(--section-side-pad);
        }

        .quick-contact-section {
            background: #F6F8FB;
            padding: 90px var(--section-side-pad);
        }

        .quick-contact-wrap {
            max-width: 720px;
            margin: 0 auto;
        }

        .quick-contact-kicker {
            color: var(--brand-green);
            font-size: 24px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
        }

        .quick-contact-title {
            color: #0f172a;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 4.8vw, 58px);
            line-height: 1.06;
            letter-spacing: -0.4px;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }

        .quick-contact-copy {
            color: #4b5563;
            font-size: 18px;
            line-height: 1.55;
            font-weight: 500;
            max-width: 760px;
            margin: 0 auto 28px;
            text-align: center;
        }

        .quick-contact-form {
            background: #ffffff;
            border: 1px solid #e8edf3;
            border-radius: 16px;
            padding: 28px;
            display: grid;
            gap: 14px;
        }

        .quick-contact-form label {
            display: inline-block;
            margin-bottom: 8px;
            color: #374151;
            font-size: 14px;
            font-weight: 600;
        }

        .quick-contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .quick-contact-input,
        .quick-contact-select,
        .quick-contact-textarea {
            width: 100%;
            border: 1px solid #d9dee7;
            border-radius: 12px;
            background: #ffffff;
            color: #111827;
            font-size: 15px;
            padding: 12px 12px;
            outline: none;
            font-family: 'Manrope', sans-serif;
        }

        .quick-contact-input:focus,
        .quick-contact-select:focus,
        .quick-contact-textarea:focus {
            border-color: #a8cc7a;
            box-shadow: 0 0 0 3px rgba(133, 183, 70, 0.1);
        }

        .quick-contact-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .quick-contact-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            border-radius: 12px;
            background: var(--brand-green);
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 1;
            padding: 13px 20px;
            text-decoration: none;
            cursor: pointer;
            margin-top: 2px;
        }

        .quick-contact-note {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.4;
        }

        .faq-wrap {
            max-width: 1100px;
            margin: 0 auto;
        }

        .faq-head {
            text-align: center;
            max-width: 860px;
            margin: 0 auto 26px;
        }

        .faq-kicker {
            color: var(--brand-green);
            font-size: 24px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .faq-title {
            color: #0f172a;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(46px, 4.8vw, 64px);
            line-height: 1.06;
            letter-spacing: -0.4px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .faq-copy {
            color: #4b5563;
            font-size: 18px;
            line-height: 1.5;
            font-weight: 500;
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-tabs {
            width: fit-content;
            margin: 0 auto 26px;
            border: 1px solid #d9dee7;
            border-radius: 999px;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            background: #f8fafc;
        }

        .faq-tab {
            border: none;
            background: transparent;
            color: #6fa038;
            font-size: 17px;
            font-weight: 600;
            line-height: 1;
            padding: 16px 34px;
            border-radius: 999px;
            cursor: pointer;
        }

        .faq-tab.active {
            background: #6fa038;
            color: #ffffff;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #edf1f5;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: 0;
            background: transparent;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 24px;
            cursor: pointer;
            color: #111827;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.35;
        }

        .faq-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid #edf1f5;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #1f2937;
            font-size: 22px;
            line-height: 1;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            display: none;
            padding: 0 24px 22px;
            color: #4b5563;
            font-size: 18px;
            line-height: 1.55;
            font-weight: 500;
            max-width: 1000px;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .site-footer {
            background: #ffffff;
            border-top: 1px solid #e6eaf0;
            padding: 90px var(--section-side-pad) 72px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.8fr 0.8fr 1.35fr;
            gap: clamp(22px, 4vw, 56px);
            align-items: start;
        }

        .footer-brand-logo {
            width: 168px;
            height: auto;
            display: block;
            margin-bottom: 14px;
        }

        .footer-text {
            color: #374151;
            font-size: 16px;
            line-height: 1.55;
            max-width: 320px;
            margin-bottom: 18px;
            font-weight: 500;
        }

        .scroll-top-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 0;
            border-radius: 12px;
            background: #6fa038;
            color: #ffffff;
            font-size: 29px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            line-height: 1;
            padding: 14px 24px;
            cursor: pointer;
        }

        .scroll-top-icon {
            width: 26px;
            height: 26px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }

        .footer-title {
            color: #111827;
            font-size: 24px;
            line-height: 1.05;
            margin-bottom: 22px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            display: grid;
            gap: 9px;
        }

        .footer-links a {
            color: #374151;
            font-size: 16px;
            line-height: 1.35;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #6fa038;
        }

        .footer-subscribe-title {
            color: #111827;
            font-size: 24px;
            line-height: 1.05;
            margin-bottom: 22px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .footer-subscribe-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
        }

        .footer-input {
            flex: 1;
            min-width: 0;
            border: 1px solid #d9dee7;
            border-radius: 12px;
            background: #ffffff;
            color: #111827;
            font-size: 14px;
            padding: 11px 12px;
            outline: none;
        }

        .footer-input::placeholder {
            color: #9ca3af;
        }

        .footer-subscribe-btn {
            border: 0;
            border-radius: 12px;
            background: #6fa038;
            color: #ffffff;
            font-size: 16px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            letter-spacing: 0.02em;
            line-height: 1;
            padding: 14px 22px;
            cursor: pointer;
        }

        .footer-social-title {
            color: #111827;
            font-size: 24px;
            line-height: 1.05;
            margin-top: 14px;
            margin-bottom: 16px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .footer-social-list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: #edf1f5;
            color: #4b5563;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .footer-social-link:hover {
            background: #6fa038;
            color: #ffffff;
        }

        .footer-social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .service-card:hover {
            background: #6fa038;
            border-color: #6fa038;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .service-card:hover .service-icon {
            background: #eef6e4;
        }

        .service-card:hover .service-name {
            color: #ffffff;
        }

        .service-card:hover .service-desc {
            color: rgba(255, 255, 255, 0.86);
        }

        .service-card:hover .service-link {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .certifications-section {
            padding: 90px var(--section-side-pad);
            background: #ffffff;
        }

        .certifications-head {
            max-width: 820px;
            margin: 0 auto 34px;
            text-align: center;
        }

        .certifications-kicker {
            color: var(--brand-green);
            font-size: 24px;
            line-height: 1.1;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .certifications-title {
            color: #111827;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 4.6vw, 56px);
            line-height: 1.08;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 12px;
        }

        .certifications-copy {
            color: #4b5563;
            font-size: 18px;
            line-height: 1.55;
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .certification-card {
            border: 1px solid #e6ebf2;
            border-radius: 14px;
            background: #f9fbfe;
            padding: 24px 20px;
            text-align: center;
            min-height: 190px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .certification-badge {
            width: 58px;
            height: 58px;
            border-radius: 999px;
            background: #e8f1ee;
            color: #6fa038;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .certification-name {
            font-family: 'Cormorant Garamond', serif;
            color: #111827;
            font-size: 30px;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .certification-meta {
            color: #4b5563;
            font-size: 15px;
            line-height: 1.45;
            font-weight: 500;
        }

        @media (max-width: 960px) {
            .navbar {
                flex-wrap: wrap;
                gap: 14px;
            }

            .brand {
                width: 100%;
            }

            .nav-links {
                margin-left: 0;
                gap: 18px;
                flex-wrap: wrap;
                justify-content: flex-end;
                flex: 1 1 auto;
            }

            .nav-actions {
                justify-content: flex-end;
            }

            .hero {
                min-height: 100vh;
                min-height: 100dvh;
                padding: 0 var(--section-side-pad);
                border-radius: 0;
            }

            .hero-content {
                padding-top: 48px;
            }

            .hero-title {
                font-size: clamp(34px, 7.5vw, 44px);
                line-height: 1.2;
            }

            .hero-copy {
                font-size: 18px;
            }

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

            .about-section {
                padding: 46px var(--section-side-pad) 58px;
            }

            .about-head {
                align-items: flex-start;
                flex-direction: column;
                margin-bottom: 20px;
            }

            .about-kicker {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .about-title {
                font-size: clamp(28px, 6.5vw, 38px);
            }

            .services-title {
                font-size: clamp(28px, 6.5vw, 38px);
                white-space: normal;
            }

            .about-slide {
                min-height: 240px;
            }

            .about-slide img {
                min-height: 240px;
            }

            .services-section {
                padding: 30px var(--section-side-pad) 58px;
            }

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

            .certifications-section {
                padding: 72px var(--section-side-pad);
            }

            .certifications-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .testimonial-section {
                padding: 56px 0 64px;
            }

            .faq-section {
                padding: 16px var(--section-side-pad) 62px;
            }

            .quick-contact-section {
                padding: 70px var(--section-side-pad);
            }

            .quick-contact-form {
                padding: 22px;
            }

            .faq-tab {
                padding: 14px 26px;
            }

            .faq-question {
                font-size: 18px;
            }

            .faq-answer {
                font-size: 17px;
            }

            .site-footer {
                padding: 46px var(--section-side-pad) 34px;
            }

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

        @media (max-width: 620px) {
            .page-shell {
                padding: 0;
            }

            .navbar-wrap {
                border-radius: 0;
                padding: 14px var(--section-side-pad);
            }

            .brand img {
                width: 150px;
            }

            .about-section {
                padding: 36px var(--section-side-pad) 46px;
            }

            .about-slide {
                min-height: 220px;
            }

            .about-slide img {
                min-height: 220px;
            }

            .services-head {
                margin-bottom: 24px;
            }

            .services-kicker {
                font-size: 22px;
            }

            .services-copy {
                font-size: 16px;
            }

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

            .why-choose-section {
                padding: 18px 0;
            }

            .service-card {
                min-height: 280px;
                padding: 30px 22px 28px;
            }

            .certifications-section {
                padding: 56px var(--section-side-pad);
            }

            .certifications-kicker {
                font-size: 22px;
            }

            .certifications-title {
                font-size: clamp(34px, 10vw, 44px);
            }

            .certifications-copy {
                font-size: 16px;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .testimonial-section {
                padding: 48px 0 56px;
            }

            .testimonial-kicker {
                font-size: 22px;
            }

            .testimonial-title {
                font-size: clamp(32px, 9vw, 42px);
            }

            .testimonial-card {
                padding: 22px;
                min-height: 250px;
            }

            .faq-section {
                padding: 10px var(--section-side-pad) 48px;
            }

            .quick-contact-section {
                padding: 52px var(--section-side-pad);
            }

            .quick-contact-kicker {
                font-size: 22px;
            }

            .quick-contact-title {
                font-size: clamp(32px, 10vw, 42px);
            }

            .quick-contact-copy {
                font-size: 16px;
                margin-bottom: 20px;
            }

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

            .faq-kicker {
                font-size: 22px;
            }

            .faq-title {
                font-size: clamp(36px, 10.5vw, 46px);
            }

            .faq-copy {
                font-size: 16px;
            }

            .faq-tabs {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                border-radius: 18px;
            }

            .faq-tab {
                padding: 12px 22px;
            }

            .faq-question {
                padding: 18px 16px;
                font-size: 17px;
            }

            .faq-answer {
                padding: 0 16px 18px;
                font-size: 16px;
            }

            .site-footer {
                padding: 34px var(--section-side-pad) 28px;
            }

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

            .footer-subscribe-row {
                flex-direction: column;
                align-items: stretch;
            }

            .footer-subscribe-btn {
                width: 100%;
            }
        }

        @media (min-width: 1280px) {
            .navbar,
            .hero-content,
            .about-head,
            .about-slider,
            .services-head,
            .certifications-head,
            .certifications-grid,
            .faq-wrap,
            .footer-grid {
                max-width: var(--content-max-width);
                margin-left: auto;
                margin-right: auto;
                width: 100%;
            }
        }
