
:root {
            --color-background: #FFFFFF;
            --color-text: #2c2c2e;
            --color-cta: #AFFF33;
            --color-cta-hover: #98eb1c;
            --color-surface: #F5FFF5;
            --color-border: #e0e0e0;
            --font-headings: 'Helvetica Neue', 'Arial', sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
        }

        /* --- BASIC RESET & TYPOGRAPHY --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: var(--color-background);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
        h4 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover, a:focus {
            color: var(--color-cta-hover);
        }

        .page-wrapper {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-pad {
            padding: clamp(3rem, 8vw, 6rem) 0;
        }
        
        .section-super-title {
            font-size: 1rem;
            font-family: var(--font-headings);
            color: #888;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* --- HEADER & NAVIGATION --- */
        .master-header {
            padding: 1.5rem 0;
            position: absolute;
            width: 100%;
            z-index: 100;
        }

        .header-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            font-family: var(--font-headings);
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .main-navigation nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            font-family: var(--font-headings);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-cta);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .nav-link:hover::after,
        .nav-link:focus::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-dropdown-wrapper {
            position: relative;
        }

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

        .nav-dropdown-trigger svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }

        .nav-dropdown-content {
            position: absolute;
            top: calc(100% + 1rem);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background-color: var(--color-background);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 1rem;
            width: 220px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.07);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .nav-dropdown-wrapper.is-open .nav-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .nav-dropdown-wrapper.is-open .nav-dropdown-trigger svg {
            transform: rotate(180deg);
        }
        .nav-dropdown-content a {
            font-family: var(--font-headings);
            font-weight: 500;
        }
        
        /* --- ACTION TRIGGER (CTA Button) --- */
        .action-trigger {
            display: inline-block;
            background-color: var(--color-cta);
            color: #000;
            font-family: var(--font-headings);
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .action-trigger:hover,
        .action-trigger:focus {
            background-color: var(--color-cta-hover);
            transform: translateY(-3px);
            color: #000;
        }


        /* --- HERO SECTION --- */
        .hero-sector {
            padding-top: 180px;
            padding-bottom: 100px;
            background-color: var(--color-background);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
            color: #555;
        }

        .hero-visual-placeholder {
            margin-top: 4rem;
            height: 200px;
            background: linear-gradient(135deg, var(--color-surface), #e0f8e0);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #d0f0d0;
        }
        
        .hero-visual-placeholder svg {
            width: 80px;
            height: 80px;
            opacity: 0.5;
            color: var(--color-text);
        }

        /* --- ARTICLE SECTION --- */
        .article-sector {
            background-color: var(--color-surface);
            padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
            border-radius: 20px;
        }
        
        .article-sector h2 {
            padding-top: 2rem;
            margin-bottom: 1.5rem;
            border-top: 1px solid #d0f0d0;
        }
        .article-sector h2:first-of-type {
            padding-top: 0;
            border-top: none;
        }
        
        .article-sector p {
            padding: 0 1rem;
        }
        
        .article-sector ul, .article-sector ol {
            padding-left: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .article-sector li {
            margin-bottom: 0.75rem;
        }
        
        .article-sector table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
        }
        
        .article-sector th, .article-sector td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #d0f0d0;
        }
        
        .article-sector th {
            background-color: #e6fce6;
            font-family: var(--font-headings);
        }
        
        .article-sector b, .article-sector strong {
            font-weight: 700;
        }
        
        .article-sector img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1rem 0 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        
        /* --- FLIP CARDS FEATURES SECTION --- */
        .features-sector {
             background-color: var(--color-background);
        }

        .flip-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .flip-card {
            background-color: transparent;
            height: 350px;
            perspective: 1500px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            border: 1px solid var(--color-border);
        }

        .flip-card-front {
            background-color: var(--color-surface);
        }
        
        .flip-card-front svg {
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .flip-card-back {
            background-color: var(--color-text);
            color: var(--color-background);
            transform: rotateY(180deg);
        }
        
        .flip-card-back h4 {
            color: var(--color-cta);
        }
        
        .flip-card-back p {
            font-size: 0.95rem;
            margin-bottom: 2rem;
            font-family: var(--font-headings);
        }

        /* --- BENEFITS SECTION --- */
        .benefits-sector {
            background-color: var(--color-surface);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-card {
            background-color: var(--color-background);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--color-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.07);
        }
        
        .benefit-card svg {
             width: 40px;
             height: 40px;
             margin-bottom: 1rem;
             color: var(--color-cta-hover);
        }
        
        .benefit-card h3 {
             margin-bottom: 0.5rem;
        }
        
        .benefit-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: #555;
        }

        /* --- HOW IT WORKS SECTION --- */
        .how-it-works-sector {
            text-align: center;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            text-align: left;
        }
        
        .step-item {
            padding: 2rem;
            border: 1px solid var(--color-border);
            border-radius: 15px;
        }
        
        .step-number {
            font-size: 3rem;
            font-family: var(--font-headings);
            font-weight: 900;
            color: var(--color-cta);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        /* --- FAQ SECTION --- */
        .faq-sector {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--color-border);
            padding: 1.5rem 0;
        }
        
        .faq-item:first-of-type {
            border-top: 1px solid var(--color-border);
        }

        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-headings);
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .faq-question svg {
            width: 20px;
            height: 20px;
            min-width: 20px;
            transition: transform 0.3s ease;
            margin-left: 1rem;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }
        
        .faq-answer p {
            padding-top: 1.5rem;
            color: #555;
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        .faq-item.is-open .faq-question svg {
            transform: rotate(45deg);
        }
        
        .faq-item.is-open .faq-answer {
            max-height: 500px; /* Adjust as needed */
            transition: max-height 1s cubic-bezier(1, 0, 1, 0);
        }
        
        /* --- FINAL CTA SECTION --- */
        .final-cta-sector {
            background-color: var(--color-text);
            color: var(--color-background);
            border-radius: 20px;
            padding: clamp(3rem, 8vw, 5rem);
            text-align: center;
        }
        
        .final-cta-sector h2 {
            color: var(--color-background);
        }
        
        .final-cta-sector p {
            max-width: 600px;
            margin: 1rem auto 2.5rem;
            color: #ccc;
        }
        
        .capture-form {
            display: flex;
            justify-content: center;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto 1.5rem auto;
        }
        
        .form-input {
            width: 100%;
            padding: 1rem;
            border-radius: 50px;
            border: 1px solid #555;
            background-color: #444;
            color: var(--color-background);
            font-family: var(--font-body);
            font-size: 1rem;
        }
        
        .form-input::placeholder {
            color: #999;
        }
        
        .trust-element {
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* --- SOCIAL PROOF SECTOR --- */
        .social-proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .proof-card {
            border: 1px solid var(--color-border);
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
        }
        
        .proof-card p {
            font-style: italic;
            color: #555;
            margin-bottom: auto;
        }
        
        .proof-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--color-border);
        }
        
        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--color-cta);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-headings);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .author-info h5 {
            margin: 0;
            font-size: 1.1rem;
        }
        .author-info span {
            font-size: 0.9rem;
            color: #777;
        }

        /* --- FOOTER --- */
        .master-footer {
            background-color: var(--color-surface);
            padding: 4rem 0 2rem 0;
            margin-top: 5rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h5 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-about p {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 0;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        
        /* --- ANIMATIONS --- */
        .anim-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .anim-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* --- MEDIA QUERIES --- */
        @media (max-width: 900px) {
            .main-navigation {
                display: none; /* Simplification for this example. A full burger menu would require more JS. */
            }
        }
        
        @media (max-width: 600px) {
            .capture-form {
                flex-direction: column;
            }
        }


.contact-header {
            padding-top: 180px;
            padding-bottom: 80px;
            background-color: var(--color-surface);
            text-align: center;
        }
        .contact-header .page-wrapper {
            max-width: 800px;
        }
        .contact-header p {
             font-size: clamp(1.1rem, 2.5vw, 1.3rem);
             max-width: 650px;
             margin: 1.5rem auto 0;
             color: #555;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr 1.5fr;
                gap: 4rem;
            }
        }
        .contact-details-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            font-family: var(--font-headings);
        }
        .contact-details-item svg {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            color: var(--color-cta-hover);
            margin-top: 5px;
        }
        .contact-details-item h5 {
            margin-bottom: 0.25rem;
            font-size: 1.2rem;
        }
        .contact-details-item p {
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.5;
            color: #555;
            font-family: var(--font-body);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-family: var(--font-headings);
        }
        .form-input-contact {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border-radius: 8px;
            border: 1px solid var(--color-border);
            background-color: var(--color-surface);
            color: var(--color-text);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-input-contact:focus {
            outline: none;
            border-color: var(--color-cta);
            box-shadow: 0 0 0 3px rgba(175, 255, 51, 0.3);
        }
        textarea.form-input-contact {
            resize: vertical;
        }
        .map-placeholder {
            height: 400px;
            background-color: var(--color-surface);
            border-radius: 15px;
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-family: var(--font-headings);
            color: #aaa;
            font-size: 1.5rem;
        }

.hero-sector-simple {
            padding-top: 180px;
            padding-bottom: 80px;
            background-color: var(--color-surface);
            text-align: center;
        }
        .hero-sector-simple .page-wrapper {
            max-width: 850px;
        }
        .hero-sector-simple p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 0;
        }
        .article-sector h2 {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #d0f0d0;
        }
        .article-sector h2:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }
        .article-sector h3 {
            margin-top: 2rem;
            font-size: 1.4rem;
        }

.faq-hero-section {
            padding-top: 150px;
            padding-bottom: 80px;
            background-color: var(--color-surface);
            text-align: center;
        }
        .faq-hero-section .hero-content {
            max-width: 850px;
            margin: 0 auto;
        }
        .article-sector h2 {
            padding-top: 2rem;
            margin-bottom: 1.5rem;
            border-top: 1px solid #d0f0d0;
        }
        .article-sector h2:first-of-type {
            padding-top: 0;
            border-top: none;
        }


/* FIX: force all sections visible (scroll reveal disabled for SEO preview) */
.reveal_on_scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

