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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    box-sizing: border-box;
}

body.modal-open {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001; /* Above hero, but below nav */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

html, body {
    height: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1fae3d; /* Fallback for green shade */
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

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

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #10b981;
}

/* --- Menu Toggle (Hamburger Icon) --- */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #10b981; /* Primary color for the icon */
    padding: 5px;
    z-index: 1001; 
}


/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 2000px;
    max-height: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 2.5rem;
    margin-bottom: 5.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0f766e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f766e;
}

@keyframes hero-stamp-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(134, 239, 172, 0.85));
    }
}

@keyframes hero-stamp-ring-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes hero-stamp-breathe {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg) scale(1);
    }
    50% {
        transform: translateY(-50%) rotate(-8deg) scale(1.04);
    }
}

.hero-invest-stamp {
    position: absolute;
    left: clamp(5rem, 17vw, 11rem);
    top: 56%;
    z-index: 2;
    text-decoration: none;
    animation:
        hero-stamp-glow 2.2s ease-in-out infinite,
        hero-stamp-breathe 2.6s ease-in-out infinite;
    transition: filter 0.2s ease;
}

.hero-invest-stamp__seal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(72px, 6.5vw, 84px);
    height: clamp(72px, 6.5vw, 84px);
    background: #0f5c38;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-invest-stamp__ring {
    position: absolute;
    inset: 5px;
    border: 2px dotted rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-stamp-ring-pulse 2.2s ease-in-out infinite;
}

.hero-invest-stamp__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    pointer-events: none;
}

.hero-invest-stamp__line {
    font-size: clamp(0.5rem, 0.75vw, 0.6rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
    line-height: 1;
}

.hero-invest-stamp__line--now {
    font-size: clamp(0.58rem, 0.85vw, 0.68rem);
    letter-spacing: 0.18em;
    color: #bbf7d0;
}

.hero-invest-stamp:hover {
    animation: hero-stamp-glow 1.2s ease-in-out infinite, hero-stamp-breathe 1.6s ease-in-out infinite;
    filter: brightness(1.1);
}

.hero-invest-stamp:hover .hero-invest-stamp__seal {
    background: #117a4a;
}

.hero-invest-stamp:active .hero-invest-stamp__seal {
    transform: scale(0.97);
}

/* Hidden on desktop; enabled inside mobile hero media query only */
.hero__scrim {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-invest-stamp,
    .hero-invest-stamp__ring {
        animation: none;
    }

    .hero-invest-stamp {
        filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.55));
    }
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    background: white;
}

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

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-img {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #4b5563;
    font-size: 1rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.about-content p {
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--service-accent, #10b981);
}

.service-card:nth-child(1) { --service-accent: #3b82f6; }
.service-card:nth-child(2) { --service-accent: #10b981; }


.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.8rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    color: white;
}

.technology .section-title {
    -webkit-text-fill-color: white;
    background: none;
}

.technology .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.tech-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05); /* Lighter for glass effect */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: center;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
}

.tech-icon-container {
    width: 60px;
    height: 60px;
    background: var(--accent-bg, rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color, #10b981);
    transition: all 0.3s ease;
}

.tech-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px var(--accent-glow, rgba(16, 185, 129, 0.3)));
}

.tech-card:hover .tech-icon-container {
    background: var(--accent-color, #10b981);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow, rgba(16, 185, 129, 0.3));
}

/* Individual Tech Card Colors */
.tech-card:nth-child(1) { 
    --accent-color: #f59e0b; 
    --accent-bg: rgba(245, 158, 11, 0.1);
    --accent-glow: rgba(245, 158, 11, 0.4);
}
.tech-card:nth-child(2) { 
    --accent-color: #3b82f6; 
    --accent-bg: rgba(59, 130, 246, 0.1);
    --accent-glow: rgba(59, 130, 246, 0.4);
}
.tech-card:nth-child(3) { 
    --accent-color: #a855f7; 
    --accent-bg: rgba(168, 85, 247, 0.1);
    --accent-glow: rgba(168, 85, 247, 0.4);
}
.tech-card:nth-child(4) { 
    --accent-color: #10b981; 
    --accent-bg: rgba(16, 185, 129, 0.1);
    --accent-glow: rgba(16, 185, 129, 0.4);
}

.tech-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.tech-card:hover h4 {
    color: var(--accent-color);
}


.tech-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 45%, #ecfdf5 100%);
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.25rem, 2.5vw, 2rem);
}

.testimonials .section-subtitle {
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.testimonials-slider {
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 1.5vw, 0.85rem);
    width: 100%;
    margin-top: 0;
}

.testimonials-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1rem, 2.5vw, 1.5rem);
    line-height: normal;
    perspective: 1400px;
    perspective-origin: center center;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 3%,
        #000 97%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 3%,
        #000 97%,
        transparent 100%
    );
}

.testimonials-marquee__track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    will-change: transform;
}

.testimonials-track {
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    gap: clamp(1.15rem, 2.5vw, 1.85rem);
    list-style: none;
    margin: 0;
    padding: 0.15rem clamp(0.25rem, 1.5vw, 0.75rem) 0;
}

.testimonial-card {
    flex: 0 0 auto;
    width: clamp(280px, 36vw, 400px);
    display: flex;
    flex-direction: column;
    line-height: normal;
    border-radius: 18px;
    overflow: visible;
    background: transparent;
    transform-style: preserve-3d;
    perspective: 1100px;
}

.testimonial-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 18px;
    transform-style: preserve-3d;
    transform: rotateX(2deg) rotateY(-3deg) translateZ(0);
    transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.4s ease;
    filter: drop-shadow(0 14px 22px rgba(4, 120, 87, 0.18));
}

.testimonial-card:nth-child(even) .testimonial-card__link {
    transform: rotateX(2deg) rotateY(3deg) translateZ(0);
}

.testimonial-card__link:focus-visible {
    outline: 2px solid #059669;
    outline-offset: 6px;
}

.testimonial-card__link:hover,
.testimonial-card__link:focus-visible {
    transform: translateY(-12px) translateZ(28px) rotateX(-6deg) rotateY(0deg) scale(1.03);
    filter: drop-shadow(0 28px 36px rgba(4, 120, 87, 0.28));
}

.testimonial-card:nth-child(even) .testimonial-card__link:hover,
.testimonial-card:nth-child(even) .testimonial-card__link:focus-visible {
    transform: translateY(-12px) translateZ(28px) rotateX(-6deg) rotateY(0deg) scale(1.03);
}

.testimonial-card__link:hover .testimonial-card__name,
.testimonial-card__link:focus-visible .testimonial-card__name {
    color: #059669;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonial-card__figure {
    position: relative;
    margin: 0;
    line-height: 0;
    border-radius: 18px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(12px);
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(4, 120, 87, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.5),
        0 8px 16px rgba(5, 150, 105, 0.12),
        0 20px 40px rgba(4, 120, 87, 0.2),
        0 32px 64px -12px rgba(6, 78, 59, 0.25);
    transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card__figure::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.08) 38%,
        transparent 52%,
        rgba(0, 0, 0, 0.04) 100%
    );
    transition: opacity 0.4s ease;
}

.testimonial-card__figure::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -5px;
    height: 14px;
    z-index: -1;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(180deg, #059669 0%, #047857 55%, #065f46 100%);
    transform: translateZ(-18px) rotateX(82deg);
    transform-origin: top center;
    opacity: 0.55;
    filter: blur(1px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card__link:hover .testimonial-card__figure,
.testimonial-card__link:focus-visible .testimonial-card__figure {
    transform: translateZ(24px) scale(1.01);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(4, 120, 87, 0.1),
        0 4px 0 rgba(255, 255, 255, 0.55),
        0 14px 28px rgba(5, 150, 105, 0.18),
        0 32px 56px rgba(4, 120, 87, 0.28),
        0 48px 80px -16px rgba(6, 78, 59, 0.35);
}

.testimonial-card__link:hover .testimonial-card__figure::before,
.testimonial-card__link:focus-visible .testimonial-card__figure::before {
    opacity: 1;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.12) 40%,
        transparent 55%,
        rgba(0, 0, 0, 0.03) 100%
    );
}

.testimonial-card__link:hover .testimonial-card__figure::after,
.testimonial-card__link:focus-visible .testimonial-card__figure::after {
    opacity: 0.75;
    transform: translateZ(-24px) rotateX(78deg);
}

.testimonial-card__meta {
    padding: clamp(0.65rem, 1.5vw, 0.85rem) 0.35rem 0.15rem;
    text-align: center;
    transform: translateZ(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card__link:hover .testimonial-card__meta,
.testimonial-card__link:focus-visible .testimonial-card__meta {
    transform: translateZ(36px);
}

.testimonial-card__name {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    font-weight: 700;
    color: #064e3b;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.testimonial-card__role {
    margin: 0.3rem 0 0;
    font-size: clamp(0.78rem, 1.55vw, 0.9rem);
    font-weight: 500;
    color: #047857;
    line-height: 1.4;
}

.testimonial-card__role--sub {
    margin-top: 0.15rem;
    font-size: clamp(0.72rem, 1.4vw, 0.82rem);
    color: #059669;
    font-weight: 500;
}

.testimonial-card__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    pointer-events: none;
    transform: translateZ(1px);
}

.testimonials-nav {
    flex-shrink: 0;
    width: clamp(2.5rem, 5vw, 3.25rem);
    height: clamp(2.5rem, 5vw, 3.25rem);
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.45);
    background: #ffffff;
    color: #047857;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0.1rem;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.12);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonials-nav:hover {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
    transform: scale(1.05);
}

.testimonials-nav:focus-visible {
    outline: 2px solid #059669;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: clamp(250px, 78vw, 320px);
    }

    .testimonials {
        padding-bottom: 1.25rem;
    }

    .testimonials-viewport {
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0%,
            #000 1.5%,
            #000 98.5%,
            transparent 100%
        );
        mask-image: linear-gradient(
            90deg,
            transparent 0%,
            #000 1.5%,
            #000 98.5%,
            transparent 100%
        );
    }

    .testimonials-nav {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-marquee__track {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1.25rem;
        transform: none !important;
    }

    .testimonials-viewport {
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
        perspective: none;
    }

    .testimonials-track[aria-hidden="true"] {
        display: none;
    }

    .testimonials-nav {
        display: none;
    }

    .testimonial-card__link,
    .testimonial-card:nth-child(even) .testimonial-card__link,
    .testimonial-card__link:hover,
    .testimonial-card__link:focus-visible,
    .testimonial-card:nth-child(even) .testimonial-card__link:hover,
    .testimonial-card__figure,
    .testimonial-card__link:hover .testimonial-card__figure,
    .testimonial-card__meta,
    .testimonial-card__link:hover .testimonial-card__meta {
        transform: none;
        filter: none;
        transition: none;
    }

    .testimonial-card__figure::after {
        display: none;
    }
}

/* Contact Section */
.contact {
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

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

.contact-info {
    padding: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.info-content h4 {
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #22345e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-weight: bold;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    gap: 10px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: #f0f1f3;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Footer Styles */

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #fdfdfd;
    width: 100%;
    
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    text-align: left;
}


.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0; 
    padding: 0;
}

.footer-policy-links {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.92;
}

.footer-policy-links a {
    color: #d1fae5;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-policy-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-bottom p {
        text-align: center;
        width: 100%;
    }
}

/* ===== Mobile footer (≤768px) — desktop unchanged ===== */
@media (max-width: 768px) {
    footer {
        padding: 1.75rem 1.15rem max(1.25rem, env(safe-area-inset-bottom));
    }

    .footer-content {
        width: 100%;
        gap: 0.65rem;
    }

    .footer-logo {
        font-size: clamp(1.3rem, 5.5vw, 1.75rem);
        margin-bottom: 0.35rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .footer-tagline {
        font-size: clamp(0.85rem, 3.6vw, 0.95rem);
        margin-bottom: 1rem;
        padding: 0 0.35rem;
        line-height: 1.5;
        max-width: 22rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1.25rem;
    }

    .footer-bottom p {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: clamp(0.75rem, 3.1vw, 0.88rem);
        font-weight: 600;
        line-height: 1.55;
        opacity: 0.78;
        word-break: break-word;
        hyphens: auto;
    }

    .footer-policy-links {
        width: 100%;
        gap: 0.35rem;
        font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    }

    .footer-policy-links a {
        font-size: inherit;
    }

    .powered-by-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        width: 100%;
    }

    .powered-by-container {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .powered-logo {
        height: 30px;
        width: auto;
        margin: 0;
    }

    .it-partner-link {
        font-size: clamp(0.8rem, 3.2vw, 0.9rem);
        word-break: break-word;
    }
}

@media (max-width: 380px) {
    .footer-bottom {
        gap: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.72rem;
        line-height: 1.5;
        padding: 0 0.15rem;
    }

    .powered-by-wrapper {
        gap: 0.35rem;
    }
}
/* --- Responsive (Mobile View) --- */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        padding: 0 1.5rem;
        position: relative;
    }

    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
        color: #10b981;
        z-index: 1005;
        transition: transform 0.3s ease;
        position: absolute;
        left: 1.5rem;
    }

    .menu-toggle[aria-expanded="true"] {
        transform: rotate(90deg);
    }
    
    .logo {
        margin: 0 auto;
        font-size: 1.5rem;
    }

    /* Hide desktop links on mobile */
    .desktop-links {
        display: none !important;
    }

    /* Style the navigation links for mobile sidebar */
    .mobile-menu {
        display: flex !important; 
        position: fixed;
        top: 0;
        left: 0;
        width: 300px; /* Slightly wider for better reach */
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 5.5rem 1.5rem 2rem;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1004;
        list-style: none;
        gap: 1.2rem;
        border-right: 1px solid rgba(16, 185, 129, 0.2);
    }

    /* Active state to show the menu */
    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .mobile-menu.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu a {
        font-size: 1.25rem;
        font-weight: 600;
        display: block;
        padding: 0.8rem 1.2rem;
        color: #1f2937;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .mobile-menu a:hover {
        background: rgba(16, 185, 129, 0.08);
        color: #10b981;
        border-left: 3px solid #10b981;
        padding-left: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Update Desktop Nav-Links Target */
.desktop-links { 
    display: flex;
    gap: 2rem;
    list-style: none;
}

.desktop-links a { 

    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-links a:hover {
    color: #10b981;
}


.mobile-menu {
    display: none; 
}

.powered-logo {
    height: 40px;
    width: auto;
    vertical-align: middle; 
    margin: 0 4px 0 4px; 
    display: inline-block; 
}

.powered-by-container {
    display: inline-flex;
    align-items: center;
    gap: 0; 
}
.powered-by-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.footer-partner-label {
    white-space: nowrap;
}

.it-partner-link {
    color: #bbf7d0;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.it-partner-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Policy pages */
.policy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
    padding: 2.5rem 1rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    padding: clamp(1.25rem, 3vw, 2.25rem);
}

.policy-back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #047857;
    text-decoration: none;
    font-weight: 700;
}

.policy-back-link:hover {
    text-decoration: underline;
}

.policy-title {
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.policy-updated {
    color: #475569;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
}

.policy-section {
    margin-top: 1.2rem;
}

.policy-section h2 {
    font-size: 1.08rem;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.policy-section p,
.policy-section li {
    color: #334155;
    line-height: 1.65;
}

.policy-section ul {
    padding-left: 1.2rem;
}

.policy-page.policy-app-shell {
    padding: 0;
    background: #f8fafc;
}

.policy-main {
    padding-top: 108px;
    padding-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
}

.policy-main > .container {
    padding: 0 1rem;
}

body.policy-mode > section:not(#policy-page-section) {
    display: none;
}

body.policy-mode #policy-page-section[hidden] {
    display: block;
}

.policy-main .policy-container {
    max-width: 980px;
}

.policy-main .policy-updated {
    margin-bottom: 1.8rem;
}

@media (max-width: 768px) {
    .policy-main {
        padding-top: 92px;
        padding-bottom: 2rem;
    }

    .policy-main > .container {
        padding: 0 0.75rem;
    }
}

.policy-section {
    padding: 0;
    margin-top: 1.1rem;
}

.policy-section:first-child {
    margin-top: 0;
}

.policy-section h2 {
    margin-top: 0;
}

.it-partner-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    text-align: center;
}

.it-partner-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f766e;
    margin-bottom: 0.75rem;
}

.it-partner-description {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.it-partner-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.1rem 1.6rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.12);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.it-partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.2);
}

.it-partner-card__logo {
    height: 48px;
    width: auto;
}

.it-partner-card__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f766e;
}

.it-partner-card__cta {
    font-size: 0.95rem;
    font-weight: 700;
    color: #10b981;
}

@media (max-width: 768px) {
    .it-partner-section {
        padding: 3.5rem 1.25rem;
    }

    .it-partner-card {
        width: 100%;
        max-width: 420px;
        padding: 1rem 1.2rem;
    }

    .it-partner-card__name {
        font-size: 1.05rem;
    }
}

.invest-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vh 1vw;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.invest-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.invest-modal {
    position: relative;
    width: 88%;
    max-width: 1332px;
    height: 87%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.invest-overlay.active .invest-modal {
    transform: scale(1);
    opacity: 1;
}

.invest-overlay.closing .invest-modal {
    transform: scale(0.97);
    opacity: 0;
}

.invest-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
}

.invest-brochure-render {
    background: #ffffff;
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0;
    width: 100%;
}

/* Desktop popup — less side gap, brochure uses full modal width */
@media (min-width: 769px) {
    .invest-overlay {
        padding: 1rem;
    }

    .invest-modal {
        width: min(89vw, 1368px);
        max-width: min(89vw, 1368px);
        height: min(88vh, 882px);
        border-radius: 14px;
    }

    .invest-scroll,
    .invest-brochure-render,
    .pdf-page-wrap,
    .pdf-page-canvas,
    .pdf-page-img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

.invest-brochure-loading {
    text-align: center;
    color: #4b5563;
    padding: 2.5rem 1rem;
    font-size: 1rem;
}

.pdf-page-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.pdf-page-wrap + .pdf-page-wrap {
    margin-top: 0;
}

.pdf-page-img,
.pdf-page-canvas {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.pdf-page-hotspot {
    position: absolute;
    z-index: 6;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    display: block;
    overflow: visible;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.pdf-page-hotspot--cta {
    z-index: 10;
    border-radius: 999px;
}

.pdf-page-hotspot:active {
    background: rgba(0, 0, 0, 0.12);
}

.hotspot-hover-ui {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hotspot-hover-text {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    background: rgba(16, 48, 28, 0.92);
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(0.65rem, 1.1vw, 0.85rem);
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.pdf-page-hotspot:hover .hotspot-hover-ui {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.invest-close,
#closePdf.invest-close {
    position: fixed;
    top: 4vh;
    right: 4vw;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #101010;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.invest-close:hover,
#closePdf.invest-close:hover {
    transform: scale(1.06);
    background: #262626;
}

@media (max-width: 768px) {
    .invest-overlay {
        padding: 1.5vh 1.5vw;
    }

    .invest-modal {
        width: 88%;
        max-width: none;
        height: 86%;
        border-radius: 12px;
    }

    .invest-close,
    #closePdf.invest-close {
        top: 2.5vh;
        right: 3.5vw;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .invest-brochure-loading {
        font-size: 0.9rem;
        padding: 2rem 0.75rem;
    }
}

/* ===== Mobile hero only (desktop styles above stay unchanged) ===== */
@media (max-width: 768px) {
    .hero {
        height: clamp(28rem, 88dvh, 36rem) !important;
        min-height: unset !important;
        max-height: calc(100dvh - 80px);
        margin-top: 80px;
        padding: 0.65rem 1.15rem 4.75rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* Pull car up — sits just below the CTA (less empty hill in the middle) */
        background-position: center 36% !important;
        background-size: cover !important;
    }

    .hero::before {
        opacity: 0.12;
    }

    .hero__scrim {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            rgba(6, 24, 16, 0.88) 0%,
            rgba(6, 24, 16, 0.42) 20%,
            rgba(6, 24, 16, 0.12) 36%,
            rgba(6, 24, 16, 0.08) 52%,
            rgba(6, 24, 16, 0.45) 88%,
            rgba(6, 24, 16, 0.62) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 21rem;
        max-height: none;
        margin: 0;
        padding: 0.2rem 0.25rem 0;
        flex: 0 0 auto;
    }

    .hero h1 {
        font-size: clamp(1.2rem, 5.6vw, 1.62rem);
        line-height: 1.2;
        margin-bottom: 0.35rem;
        letter-spacing: -0.02em;
    }

    .hero p {
        font-size: clamp(0.8rem, 3.5vw, 0.96rem);
        line-height: 1.4;
        margin-bottom: 0.55rem;
        max-width: 17.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        margin-bottom: 0;
        gap: 0.5rem;
    }

    .hero .btn-secondary {
        background: linear-gradient(180deg, #138a52 0%, #0f5c38 100%);
        color: #ffffff;
        border: none;
        font-size: 0.88rem;
        padding: 0.62rem 1.2rem;
        min-height: 44px;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
    }

    .hero .btn-secondary:hover {
        background: linear-gradient(180deg, #16a35f 0%, #117a4a 100%);
        color: #ffffff;
    }

    .hero-invest-stamp {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: max(0.5rem, env(safe-area-inset-bottom));
        margin: 0;
        align-self: center;
        z-index: 2;
        transform: translateX(-50%);
        animation:
            hero-stamp-glow 2.2s ease-in-out infinite,
            hero-stamp-breathe-mobile 2.6s ease-in-out infinite;
    }

    @keyframes hero-stamp-breathe-mobile {
        0%, 100% {
            transform: translateX(-50%) rotate(-7deg) scale(1);
        }
        50% {
            transform: translateX(-50%) rotate(-7deg) scale(1.04);
        }
    }

    .hero-invest-stamp__seal {
        width: clamp(56px, 15vw, 66px);
        height: clamp(56px, 15vw, 66px);
    }

    .hero-invest-stamp__line {
        font-size: 0.46rem;
    }

    .hero-invest-stamp__line--now {
        font-size: 0.52rem;
    }
}

@media (max-width: 768px) and (max-height: 700px) {
    .hero {
        height: clamp(26rem, 92dvh, 32rem) !important;
        background-position: center 34% !important;
        padding-bottom: 4.25rem;
    }

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

    .hero p {
        font-size: 0.78rem;
        margin-bottom: 0.45rem;
    }

    .hero-invest-stamp__seal {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        height: 100dvh !important;
        max-height: calc(100dvh - 80px);
        background-position: center 32% !important;
        padding-top: 0.5rem;
        padding-bottom: 3.75rem;
    }

    .hero-content {
        max-width: 26rem;
    }

    .hero h1 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .hero p {
        font-size: 0.75rem;
        margin-bottom: 0.45rem;
    }

    .hero-invest-stamp {
        margin-top: 0.35rem;
    }

    .hero-invest-stamp__seal {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 380px) {
    .hero-content {
        max-width: 100%;
    }

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

    .hero .btn-secondary {
        width: 100%;
        max-width: 15.5rem;
    }
}