/* ==========================================
   TURTLES WEB - LAYOUT & CORE CONTAINERS
   ========================================== */

/* Global Theme & Transitions */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme {
    background-color: #050505;
    color: #ffffff;
}

body.light-theme-only,
body.light-theme-only.dark-theme {
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* Navbar & Sticky Floating Wrapper */
.navbar-wrapper { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    z-index: 10003; 
    padding-top: 24px;
    transition: padding 0.5s ease;
}

.navbar { 
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 50px; 
    padding: 12px 28px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 36px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    max-width: 90vw;
}

.nav-logo { font-weight: 700; font-size: 16px; color: #ffffff; cursor: pointer; letter-spacing: -0.5px; text-decoration: none; white-space: nowrap; transition: color 0.8s ease;}
.nav-links { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; align-items: center; }
.nav-links li { position: relative; }
.nav-links li a { text-decoration: none; color: #aaaaaa; font-size: 13px; font-weight: 500; transition: color 0.3s ease; white-space: nowrap; }
.nav-links li a:hover,
.nav-links li a.active { color: #ffffff; font-weight: 600; }

/* Mega Menu Dropdown Styles */
.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.chevron-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-mega-menu:hover .chevron-icon {
    transform: rotate(180deg);
}

.mega-menu {
    display: none !important;
}

/* Invisible hover bridge to prevent menu from closing when mouse moves between trigger link and dropdown */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 28px;
    background: transparent;
}

.has-mega-menu:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    display: grid;
    gap: 24px;
    text-align: left;
}

body.dark-theme .mega-menu-inner {
    background: #121212;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mega-grid-services {
    grid-template-columns: 240px 420px;
    width: 684px;
}

.mega-grid-cases {
    grid-template-columns: 240px 380px;
    width: 668px;
}

.mega-grid-insights {
    grid-template-columns: 240px 380px;
    width: 668px;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-featured {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .mega-featured {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.08);
}

.mega-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}
body.dark-theme .mega-badge { color: #aaa; }

.mega-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
body.dark-theme .mega-title { color: #fff; }

.mega-desc {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}
body.dark-theme .mega-desc { color: #aaa; }

.mega-cta-link {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.2s ease, transform 0.2s ease;
}
body.dark-theme .mega-cta-link { color: #fff; }
.mega-cta-link:hover { transform: translateX(3px); }

.mega-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.mega-links-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mega-item:hover {
    background: rgba(0, 0, 0, 0.04);
}
body.dark-theme .mega-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mega-icon {
    font-size: 18px;
    line-height: 1;
    padding-top: 2px;
}

.mega-item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}
body.dark-theme .mega-item-title { color: #fff; }

.mega-item-desc {
    font-size: 11.5px;
    color: #777;
    line-height: 1.35;
}
body.dark-theme .mega-item-desc { color: #888; }

/* Body Scroll Lock when Mobile Menu is Open */
body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 10002;
    position: relative;
}

.hamburger-bar {
    width: 22px;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                background-color 0.3s ease;
    transform-origin: center;
}

body.dark-theme .hamburger-bar {
    background-color: #fff;
}

/* Hamburger morphs to X when menu is open */
.mobile-menu-active .hamburger-bar {
    background-color: #fff;
}
.mobile-menu-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   FLOATING ISLAND MOBILE MENU (MODERN & MINIMAL)
   ============================================= */
.mobile-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    margin: 0 auto;
    max-width: 440px;
    width: calc(100% - 32px);
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.04);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.26s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.26s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* Light theme support */
body:not(.dark-theme) .mobile-nav-menu {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.04);
}

.mobile-menu-active .mobile-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Inner Container */
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

/* List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.mobile-nav-list li {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Individual Link Row */
.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    letter-spacing: -0.2px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

body:not(.dark-theme) .mobile-nav-link {
    color: #333333;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

body:not(.dark-theme) .mobile-nav-link:hover,
body:not(.dark-theme) .mobile-nav-link:active {
    background: rgba(0, 0, 0, 0.04);
    color: #000000;
}

.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
}

body:not(.dark-theme) .mobile-nav-link.active {
    background: rgba(0, 0, 0, 0.06);
    color: #000000;
}

.mobile-nav-chevron {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease, transform 0.2s ease;
}

body:not(.dark-theme) .mobile-nav-chevron {
    stroke: rgba(0, 0, 0, 0.35);
}

.mobile-nav-link:hover .mobile-nav-chevron,
.mobile-nav-link:active .mobile-nav-chevron,
.mobile-nav-link.active .mobile-nav-chevron {
    stroke: #ffffff;
    transform: translateX(2px);
}

body:not(.dark-theme) .mobile-nav-link:hover .mobile-nav-chevron,
body:not(.dark-theme) .mobile-nav-link:active .mobile-nav-chevron {
    stroke: #000000;
}

/* Hairline Divider */
.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 6px;
}

body:not(.dark-theme) .mobile-nav-divider {
    background: rgba(0, 0, 0, 0.06);
}

/* CTA Section */
.mobile-nav-cta {
    width: 100%;
    margin-top: 4px;
    padding-top: 0;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #0a0a0a;
    padding: 13px 20px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body:not(.dark-theme) .btn-mobile-cta {
    background: #111111;
    color: #ffffff;
}

.btn-mobile-cta:hover,
.btn-mobile-cta:active {
    transform: scale(0.985);
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

body:not(.dark-theme) .btn-mobile-cta:hover {
    background: #000000;
}

.btn-mobile-cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.btn-mobile-cta:hover svg {
    transform: translateX(3px);
}

/* Page Section Container */
.page-container {
    width: 100%;
    max-width: 940px;
    margin: -80px auto 100px auto;
    position: relative;
    z-index: 10;
    padding: 20px;
}

/* Showcase Section Wrapper */
.showcase-wrapper {
    padding: 120px 40px;
    opacity: 1;
    pointer-events: all;
}

.showcase-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 160px;
}

/* Kinetic Testimonials Section */
.testimonials-section { padding: 160px 0 60px 0; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.marquee-bg { position: absolute; top: 50%; left: 0; transform: translateY(-50%); white-space: nowrap; font-size: 280px; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03); z-index: 0; pointer-events: none; animation: marqueeScroll 60s linear infinite; }
@keyframes marqueeScroll { 0% { transform: translate(0, -50%); } 100% { transform: translate(-50%, -50%); } }

.testi-track { display: flex; gap: 40px; padding: 0 5vw; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; position: relative; z-index: 2; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card { flex: 0 0 700px; background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 32px; padding: 80px 64px; scroll-snap-align: center; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease; min-height: 480px; }
.testi-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.04); }

.quote-icon { width: 48px; height: 48px; color: #333; margin-bottom: 40px; transition: color 0.4s ease; }
.testi-card:hover .quote-icon { color: #ffffff; }
.testi-text { font-size: 32px; font-weight: 400; line-height: 1.4; letter-spacing: -0.5px; color: #ffffff; margin-bottom: 60px; }
.testi-author { display: flex; align-items: center; gap: 24px; }
.author-line { width: 40px; height: 1px; background: #444; transition: width 0.4s ease, background 0.4s ease; }
.testi-card:hover .author-line { width: 80px; background: #ffffff; }
.author-name { font-size: 18px; font-weight: 600; color: #ffffff; margin-bottom: 4px; }
.author-role { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #888; }

/* ------------------------------------- */
/* UNIVERSAL FOOTER                      */
/* ------------------------------------- */
.site-footer {
    background-color: #050505;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
}

.footer-visual-spacer {
    display: none !important;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    position: relative;
    z-index: 2;
}

/* Top Highlight: Big Email & CTA */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
    gap: 40px;
}

.footer-email-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-email-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.footer-big-email {
    font-size: clamp(32px, 4.6vw, 75px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-big-email:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-big-email .copy-icon {
    stroke: rgba(255, 255, 255, 0.4);
    width: clamp(22px, 3.2vw, 36px);
    height: clamp(22px, 3.2vw, 36px);
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.footer-big-email:hover .copy-icon {
    stroke: #60a5fa;
    transform: scale(1.15);
}

.btn-massive {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-massive:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-massive svg {
    transition: transform 0.3s ease;
}

.btn-massive:hover svg {
    transform: translateX(4px);
}

/* Main 5-Column Link Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 60px;
}

.brand-col .footer-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: #ffffff;
}

.brand-col .brand-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.brand-col .brand-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-info .contact-link, .footer-contact-info .address-text {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.footer-contact-info .contact-link:hover {
    color: #ffffff;
}

.footer-col h4 {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1.4;
    display: inline-block;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Dedicated AI Platform Analysis Bar */
.footer-ai-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 24px 32px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.ai-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-bar-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

.ai-bar-subtitle {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.ai-platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ai-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.ai-platform-btn .ai-icon {
    transition: transform 0.25s ease;
}

.ai-platform-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.ai-platform-btn:hover .ai-icon {
    transform: scale(1.1);
}

/* Brand Specific Glow Effects */
.ai-chatgpt:hover { border-color: #10a37f; background: rgba(16, 163, 127, 0.15); box-shadow: 0 0 20px rgba(16, 163, 127, 0.25); }
.ai-gemini:hover { border-color: #8e75ff; background: rgba(142, 117, 255, 0.15); box-shadow: 0 0 20px rgba(142, 117, 255, 0.25); }
.ai-claude:hover { border-color: #d97706; background: rgba(217, 119, 6, 0.15); box-shadow: 0 0 20px rgba(217, 119, 6, 0.25); }
.ai-grok:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.15); box-shadow: 0 0 20px rgba(255, 255, 255, 0.25); }
.ai-perplexity:hover { border-color: #22d3ee; background: rgba(34, 211, 238, 0.15); box-shadow: 0 0 20px rgba(34, 211, 238, 0.25); }

/* Lower Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-bottom-social a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 13px;
}

.footer-bottom-social a:hover {
    color: #ffffff;
}

/* Copy Confirmation Toast */
.email-copy-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99999;
    background: #ffffff;
    color: #050505;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.email-copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.email-copy-toast svg {
    stroke: #10b981;
}

/* Layout Responsive Styles */
@media (max-width: 1100px) {
    .mega-menu { display: none; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 850px) {
    .navbar { justify-content: space-between; width: calc(100% - 40px); padding: 12px 24px; gap: 0; }
    .nav-links { display: none; }
    .mobile-nav-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .navbar-wrapper { padding-top: 12px; }
    .navbar { padding: 10px 18px; gap: 12px; width: calc(100% - 32px); max-width: 480px; border-radius: 50px; }
    .nav-logo { font-size: 14px; }

    .testi-card { flex: 0 0 85%; padding: 40px 32px; min-height: auto; border-radius: 24px; scroll-snap-align: start; }
    .testi-text { font-size: 20px; margin-bottom: 40px; }

    .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 40px; margin-bottom: 40px; }
    .btn-massive { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
    .footer-ai-bar { padding: 20px 24px; }
    .ai-platforms-list { gap: 8px; }
    .ai-platform-btn { padding: 8px 14px; font-size: 12px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; justify-content: center; }
    .footer-bottom-social { justify-content: center; }
    .footer-content { padding: 0 24px 40px 24px; }
    .email-copy-toast { bottom: 20px; right: 20px; left: 20px; justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .navbar { width: calc(100% - 24px); padding: 8px 14px; gap: 8px; }
    .nav-logo { font-size: 13px; }
    .footer-grid { grid-template-columns: 1fr; }
}


