/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Fresh Mint Teal Palette */
    --primary-color: #5BB5A2;
    /* Teal Accent */
    --primary-light: #D5E8E4;
    /* Mint Background */
    --primary-dark: #3D9181;
    /* Darker Teal */
    --accent-color: #5BB5A2;
    /* Teal Accent */
    --secondary-color: #2C4A44;
    /* Deep Teal */
    --text-color: #2C4A44;
    /* Deep Teal */
    --divider-gray: #B8D4CF;
    /* Soft Mint */
    --white: #ffffff;
    --sand-light: #D5E8E4;
    /* Mint Background */
    --border-color: #B8D4CF;
    /* Soft Mint */

    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(44, 74, 68, 0.08);
    --shadow-md: 0 10px 30px rgba(44, 74, 68, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 74, 68, 0.15);

    /* Transitions */
    --transition: all 0.4s ease;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Glitter Sparkle Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(91, 181, 162, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(184, 212, 207, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(61, 145, 129, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 100px 100px;
    background-position: 0 0, 40px 40px, 20px 60px;
    z-index: -1;
    pointer-events: none;
    animation: sparkleFloat 15s linear infinite, sparkleGlow 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

@keyframes sparkleGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background-color: var(--primary-light);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(91, 181, 162, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 181, 162, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(111, 111, 111, 0.6);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(111, 111, 111, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    /* Adjust based on logo aspect ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 181, 162, 0.4) 0%, rgba(91, 181, 162, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    /* decorative circle */
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(76, 175, 132, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Services Overview (Home) */
.services-section {
    position: relative;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✔';
    color: var(--primary-color);
    font-weight: bold;
}

/* Trust Section */
/* Trust Section */
.trust-section {
    background: transparent;
    padding: 40px 0;
    margin-top: 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Elastic bounce */
    border: 1px solid var(--border-color);
}

.trust-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* Anime-style Icon Wobble */
@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-15deg) scale(1.1);
    }

    30% {
        transform: rotate(10deg) scale(1.1);
    }

    45% {
        transform: rotate(-10deg) scale(1.1);
    }

    60% {
        transform: rotate(5deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.trust-item:hover i {
    animation: wobble 0.6s ease-in-out;
    color: var(--primary-dark);
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.trust-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 1;
}

/* About Page */
.about-hero {
    background: var(--primary-light);
    padding: 140px 0 80px;
}

.mission-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 50px;
}

.contact-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form-container {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 181, 162, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact h4 {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--primary-color);
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.process-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.process-content h4 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: var(--white);
}

.faq-answer.show {
    padding: 0 20px 20px 20px;
    /* remove top padding to keep it close to title */
    border-top: none;
}

/* Page Banner Base Style */
.page-banner {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    color: var(--white) !important;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem;
}

/* Specific Banner Backgrounds with Overlays */
.banner-services {
    background: linear-gradient(rgba(91, 181, 162, 0.7), rgba(91, 181, 162, 0.7)), url('../img/services-bg.webp');
    background-size: cover;
    background-position: center;
}

.banner-about {
    background: linear-gradient(rgba(91, 181, 162, 0.7), rgba(91, 181, 162, 0.7)), url('../img/about-bg.webp');
    background-size: cover;
    background-position: center;
}

.banner-trust {
    background: linear-gradient(rgba(91, 181, 162, 0.7), rgba(91, 181, 162, 0.7)), url('../img/trust-bg.webp');
    background-size: cover;
    background-position: center;
}

.banner-contact {
    background: linear-gradient(rgba(91, 181, 162, 0.7), rgba(91, 181, 162, 0.7)), url('../img/contact-bg.webp');
    background-size: cover;
    background-position: center;
}

/* Stats Counter */

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 132, 0.5);
    z-index: 1001;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-cta:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- New Animations --- */

/* 1. Hero Entry Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.hero-buttons {
    opacity: 0;
    /* Start hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* 2. Icon Pulse on Hover */
@keyframes pulseRing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 132, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(76, 175, 132, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 132, 0);
    }
}

.service-card:hover .service-icon {
    animation: pulseRing 1.5s infinite;
}

/* 3. Button Shine Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
    transition: 0.5s;
}

/* Launch Page Specific Styles */

/* Improved Button Styles */
.btn {
    padding: 14px 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Capability Strip Removed */

/* Concept Work Showcase */
.concept-showcase {
    background: var(--sand-light);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.concept-label {
    display: inline-block;
    background: rgba(15, 61, 46, 0.08);
    /* Transparent Primary */
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.showcase-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    height: 250px;
    background: #e0ddd5;
    /* Placeholder color if image missing */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    padding: 25px;
}

.showcase-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.showcase-content p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Why Sections */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.minimal-text-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.big-statement {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 20px;
    background: var(--sand-light);
    border-radius: 12px;
}

.advantage-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Low Risk CTA */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.btn-whatsapp {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-whatsapp:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {


    .big-statement {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Editorial Refinement & Motion */
.editorial-section {
    padding: 120px 0;
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.editorial-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.editorial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.editorial-text.active {
    opacity: 1;
    transform: translateY(0);
}

.editorial-text p span {
    transition: font-weight 0.3s ease;
}

.editorial-text p span:hover {
    font-weight: 600;
}

.philosophy-line {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 80px 0;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.philosophy-line.active {
    opacity: 1;
    transform: translateY(0);
}

.subtle-underline {
    position: relative;
    display: inline-block;
}

.subtle-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal.active .subtle-underline::after,
.philosophy-line.active .subtle-underline::after {
    transform: scaleX(1);
}

/* Anime-Inspired Motion */
.word-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.word-reveal.active span {
    opacity: 1;
    transform: translateY(0);
}

.divider-line {
    width: 100%;
    height: 1px;
    background: var(--divider-gray);
    margin: 60px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal.active .divider-line,
.active .divider-line {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .editorial-section {
        padding: 80px 0;
    }
}