/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #f7f7f7;
    background-color: #011b34;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===================== */
/* ANIMATIONS            */
/* ===================== */

/* Scroll-triggered: elements start hidden */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.fade-up {
    transform: translateY(40px);
}

.animate-on-scroll.rotate-in {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
}

/* When visible */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
}

/* Hero orb glow animation — now orb is a video, keep float only */
@keyframes orbPulse {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


/* Rotate ring animation for 24h icon */
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Button pulse */
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(5, 176, 238, 0.4); }
    50% { box-shadow: 0 0 20px 6px rgba(5, 176, 238, 0.15); }
}

/* ===================== */
/* TOP BANNER            */
/* ===================== */
.top-banner {
    background: linear-gradient(90deg,#05b0ee,#0891d1);
    text-align: center;
    padding: 12px 1em;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

/* ===================== */
/* HEADER                */
/* ===================== */
.header {
    background-color: rgba(1, 27, 52, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================== */
/* HEADER CONTROLS (Lang + Theme) */
/* ============================== */
.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
    line-height: 1;
}

.lang-btn:hover {
    transform: scale(1.12);
}

.lang-btn.active {
    background: #05b0ee;
    box-shadow: 0 2px 8px rgba(5,176,238,0.5);
}

.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(20deg);
}

/* ===================== */
/* LIGHT MODE OVERRIDES  */
/* ===================== */
body.light-mode {
    background-color: #f4f7fb;
    color: #0f1117;
}

body.light-mode .header {
    background-color: rgba(244, 247, 251, 0.94);
    border-bottom: 1px solid #e0e7ef;
}

body.light-mode .lang-switcher {
    background: rgba(0,0,0,0.06);
}

body.light-mode .theme-toggle {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
    color: #333;
}

body.light-mode .nav a {
    color: #1e293b;
}

body.light-mode .nav a:hover {
    color: #05b0ee;
}

body.light-mode .top-banner {
    background: #e8f0fe;
    color: #1e40af;
}

body.light-mode .hero,
body.light-mode .subpage-hero {
    background-color: #deeaf8;
}

body.light-mode .hero h1,
body.light-mode .subpage-hero h1 {
    color: #0f1117;
}

body.light-mode .hero p,
body.light-mode .subpage-hero p {
    color: #475569;
}

body.light-mode .features-intro {
    background: #f4f7fb;
    border-bottom: 1px solid #e0e7ef;
}

body.light-mode .features-intro h2 {
    color: #0f1117;
}

body.light-mode .card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

body.light-mode .card-text h3,
body.light-mode .card-text p {
    color: #1e293b;
}

body.light-mode .cta-section,
body.light-mode .why-section {
    background: #ffffff;
}

body.light-mode .why-section h2,
body.light-mode .cta-section h2 {
    color: #0f1117;
}

body.light-mode .features-detail {
    background: #f4f7fb;
}

body.light-mode .feature-text h2 {
    color: #0f1117;
}

body.light-mode .feature-text p,
body.light-mode .feature-list li {
    color: #475569;
}

body.light-mode .founders-section {
    background: #f4f7fb !important;
}

body.light-mode .founder-card {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

body.light-mode .founder-card h3,
body.light-mode .founder-desc {
    color: #0f1117 !important;
}

body.light-mode .pricing-section {
    background-color: #e8f0fe;
}

body.light-mode .try-page {
    background: #f4f7fb;
}

body.light-mode .footer {
    background-color: #0f2744;
}

body.light-mode .testimonials {
    background: #f4f7fb;
}

body.light-mode .testimonial-card {
    background: #fff;
    color: #1e293b;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2em;
}

.nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #f7f7f7;
    transition: color 0.3s;
}

.nav a:hover {
    color: #05b0ee;
}

.nav-cta {
    color: #05b0ee !important;
}

/* ===================== */
/* HERO                  */
/* ===================== */
.hero {
    background-color: #011b34;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero p {
    font-size: 17px;
    color: #c0cfe0;
    line-height: 1.7;
}

/* Hero Orb — now using the actual video from tapcall.net */
.hero-orb {
    position: relative;
    width: 520px;
    height: 520px;
    flex-shrink: 0;
    animation: orbFloat 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* ===================== */


/* ===================== */
/* FEATURES INTRO        */
/* ===================== */
.features-intro {
    background-color: #011b34;
    padding: 80px 0 40px;
    text-align: center;
}

.features-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.features-intro p {
    font-size: 16px;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== */
/* FEATURE CARDS         */
/* ===================== */
.feature-cards {
    background-color: #011b34;
    padding: 40px 0 40px;
}

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

.card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
    color: #1e293b;
    position: relative;
    min-height: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card::before {
    display: none;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-text {
    position: relative;
    z-index: 2;
    max-width: 48%;
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.card p {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
}

/* Card visual — the video frame already contains the pre-rendered circle.
   The video is 620px wide: left ~45% is black, right ~55% contains the circle+person.
   We position at bottom:0 right:0 with overflow:hidden on the card, so the left
   black portion gets clipped by the card boundary. */
.card-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 620px;
    height: 349px;
    pointer-events: none;
    /* Clip the solid-black left ~45% of the video frame so only the circle+person shows */
    clip-path: inset(0 0 0 46%);
}

.card-circle {
    /* Pure pass-through wrapper */
    display: block;
    width: 620px;
    height: 349px;
    background: none;
    border-radius: 0;
    overflow: visible;
}

.card-video {
    width: 620px;
    height: 349px;
    display: block;
}

/* Floating icons \u2014 positioned relative to .card (direct child), not clipped by overflow:hidden */
.card-icons {
    position: absolute;
    bottom: 140px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 29, 53, 0.85);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    animation: iconBob 3s ease-in-out infinite;
}

.card-icon:nth-child(2) {
    animation-delay: 0.7s;
    margin-left: 20px;
}

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}


/* ===================== */
/* FEATURE ENHANCEMENTS  */
/* ===================== */
.feature-enhancements {
    background-color: #011b34;
    padding: 0 0 80px;
}

.enhancements-box {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.enhancements-box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
}

.enhancements-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.enhancement-btn {
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.2s;
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.enhancement-btn:hover {
    background-color: #05b0ee;
    color: #000;
    transform: translateY(-2px);
}

/* ===================== */
/* CTA SECTION           */
/* ===================== */
.cta-section {
    background-color: #011b34;
    padding: 80px 0;
    text-align: center;
}

.cta-label {
    font-size: 15px;
    color: #05b0ee;
    margin-bottom: 12px;
    font-style: italic;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content > p:not(.cta-label) {
    font-size: 16px;
    color: #9CA3AF;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: #05b0ee;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 48px;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.3s;
    animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    background-color: #039dd6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 176, 238, 0.35);
    animation: none;
}

/* ===================== */
/* WHY SECTION           */
/* ===================== */
.why-section {
    background-color: #011b34;
    padding: 80px 0;
    text-align: center;
}

.why-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.why-subtitle {
    font-size: 15px;
    color: #9CA3AF;
    max-width: 900px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.why-layout {
    display: flex;
    gap: 60px;
    text-align: left;
}

.why-tabs {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.why-tab {
    padding: 18px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: #1e293b;
    background-color: #e8ecf0;
    border-bottom: 1px solid #d1d5db;
    transition: background-color 0.3s, color 0.3s;
}

.why-tab:first-child {
    border-radius: 6px 6px 0 0;
}

.why-tab:last-child {
    border-radius: 0 0 6px 6px;
    border-bottom: none;
}

.why-tab.active {
    background-color: #05b0ee;
    color: #ffffff;
}

.why-tab:hover:not(.active) {
    background-color: #d1d8e0;
}

.why-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeInPanel 0.4s ease;
}

.why-panel.active {
    display: flex;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.why-panel-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Why Media Video */
.why-media {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.why-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




/* ===================== */
/* TESTIMONIALS          */
/* ===================== */
.testimonials {
    background-color: #011b34;
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-size: 15px;
    color: #9CA3AF;
    max-width: 900px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

.testimonial-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.quote {
    font-size: 16px;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #334155;
}

/* ===================== */
/* FINAL CTA             */
/* ===================== */
.final-cta {
    background-color: #011b34;
    padding: 40px 0 80px;
}

.final-cta-box {
    background-color: #f0f5fa;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.final-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.final-cta-box p {
    font-size: 16px;
    color: #334155;
    margin-bottom: 28px;
}

.cancel-note {
    font-size: 14px;
    color: #9CA3AF !important;
    margin-top: 12px;
}

/* ===================== */
/* SCROLL TO TOP         */
/* ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: #05b0ee;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background-color: #039dd6;
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.footer {
    background-color: #011b34;
    padding: 60px 0 0;
    border-top: 1px solid #1a3350;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: #05b0ee;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #05b0ee;
}

.footer-services ul li {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid #1a3350;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9CA3AF;
}

.footer-bottom a {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #05b0ee;
}

/* ===================== */
/* SUBPAGES              */
/* ===================== */

.subpage-hero {
    background-color: #011b34;
    padding: 120px 0 80px;
}

.features-detail {
    padding: 80px 0;
    background-color: #fff;
}

.feature-detailed-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-detailed-row.reverse {
    flex-direction: row-reverse;
}

.feature-detailed-row:last-child {
    margin-bottom: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #334155;
    margin-bottom: 16px;
    font-weight: 500;
}

.feature-list li img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.feature-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-media img,
.feature-media video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.mockup-video {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.founder-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.founder-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom;
}

.founder-info {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-info h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 16px;
    color: #05b0ee;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: auto;
}

/* ===================== */
/* CONTACT FORM          */
/* ===================== */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #f8fafc;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #05b0ee;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(5, 176, 238, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */
@media (max-width: 922px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-orb {
        width: 280px;
        height: 280px;
    }

    .orb {
        width: 250px;
        height: 250px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .cta-section h2,
    .why-section h2,
    .testimonials h2 {
        font-size: 32px;
    }

    .cards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .card {
        flex-direction: column !important;
        height: auto !important;
        padding: 30px;
        text-align: center;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .card-text {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .card-visual {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        height: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .card-circle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
    }

    .card-video {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        transform: scale(0.6) translateX(-25%);
        transform-origin: center;
        margin: -40px 0; /* Negate the empty space caused by scaling down */
    }

    /* Subpages Responsive */
    .feature-detailed-row,
    .feature-detailed-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
        text-align: left;
    }

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

    .why-layout {
        flex-direction: column;
        align-items: center;
    }

    .why-tabs {
        width: 100%;
        max-width: 400px;
    }

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

@media (max-width: 544px) {
    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        gap: 1.2em;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-orb {
        width: 200px;
        height: 200px;
    }

    .orb {
        width: 180px;
        height: 180px;
    }

    .cta-section h2,
    .why-section h2,
    .testimonials h2 {
        font-size: 26px;
    }

    .final-cta-box h2 {
        font-size: 26px;
    }

    .enhancements-buttons {
        flex-direction: column;
        align-items: center;
    }

    .enhancement-btn {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===================== */
/* PRICING TABLE         */
/* ===================== */

.pricing-section {
    padding: 60px 0 120px;
    background-color: #011b34;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 40px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.tier-access { background-color: #2b6194; color: #ffffff; }
.tier-basic { background-color: #4e94db; color: #ffffff; }
.tier-expert { background-color: #96d4ed; color: #ffffff; }

.tier-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    flex-grow: 0;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

.chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
}

.tier-price-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.tier-price {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.tier-subtext {
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.75;
    margin-bottom: 20px;
}

.tier-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #ffffff;
    color: #011b34;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: #05b0ee;
    color: #fff;
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .pricing-grid {
        gap: 20px;
    }
    .pricing-card {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}


/* hamburger-menu */
.hamburger{display:none;background:none;border:0;cursor:pointer;padding:8px;width:44px;height:44px;flex-direction:column;justify-content:center;align-items:center;gap:5px;z-index:1001;}
.hamburger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:transform .3s ease,opacity .3s ease;}
body.light-mode .hamburger span{background:#1e293b;}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media (max-width:820px){
  .hamburger{display:flex;}
  .header-inner{flex-direction:row !important;align-items:center;justify-content:space-between;gap:12px;}
  .nav{position:fixed;top:0;right:0;height:100vh;width:78%;max-width:320px;background:#011b34;flex-direction:column;align-items:flex-start;justify-content:flex-start;padding:90px 28px 28px;gap:22px;transform:translateX(100%);transition:transform .35s cubic-bezier(.16,1,.3,1);box-shadow:-20px 0 60px rgba(0,0,0,.3);z-index:1000;overflow-y:auto;}
  body.light-mode .nav{background:#ffffff;}
  .nav.open{transform:translateX(0);}
  .nav a{font-size:18px;width:100%;padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.08);}
  body.light-mode .nav a{border-bottom-color:rgba(0,0,0,0.08);}
  .nav-cta{margin-top:8px;border:0;}
  body.nav-open{overflow:hidden;}
  body.nav-open::after{content:'';position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:999;}
}

/* hamburger-menu-fix */
@media (max-width: 960px){
  .hamburger{display:flex !important;}
  .header-inner{flex-direction:row !important;align-items:center !important;justify-content:space-between !important;gap:12px !important;}
  .nav{position:fixed !important;top:0 !important;right:0 !important;left:auto !important;height:100vh !important;width:78% !important;max-width:320px !important;background:#011b34 !important;flex-direction:column !important;align-items:flex-start !important;justify-content:flex-start !important;padding:90px 28px 28px !important;gap:22px !important;transform:translateX(100%) !important;transition:transform .35s cubic-bezier(.16,1,.3,1) !important;box-shadow:-20px 0 60px rgba(0,0,0,.3) !important;z-index:1000 !important;overflow-y:auto !important;}
  body.light-mode .nav{background:#ffffff !important;}
  .nav.open{transform:translateX(0) !important;}
  .nav a{font-size:18px !important;width:100% !important;padding:10px 0 !important;border-bottom:1px solid rgba(255,255,255,0.08) !important;}
  .nav-cta{margin-top:8px !important;border:0 !important;}
  body.nav-open{overflow:hidden;}
  body.nav-open::after{content:'';position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:999;}
}
