/* ============================================================
   TOOGIC CRM – LIGHT THEME CSS
   Brand Colors: Red #EA4335 | Blue #4285F4 | Yellow #FBBC04 | Green #34A853
   ============================================================ */

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

:root {
    /* Brand Colors */
    --red:    #EA4335;
    --blue:   #4285F4;
    --yellow: #FBBC04;
    --green:  #34A853;
    --orange: #FF6D00;

    /* Primary = Blue (main CTA) */
    --primary:       #4285F4;
    --primary-dark:  #1a73e8;
    --primary-light: #669df6;

    /* Light Theme */
    --bg:            #FFFFFF;
    --bg-2:          #F8FAFC;
    --bg-3:          #F1F5F9;
    --surface:       #FFFFFF;
    --surface-2:     #F8FAFC;
    --border:        #E2E8F0;
    --border-2:      #CBD5E1;
    --text-primary:  #1E293B;
    --text-secondary:#475569;
    --text-muted:    #94A3B8;
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    --shadow-lg:     0 10px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl:     0 20px 60px rgba(0,0,0,0.12);
    --shadow-blue:   0 4px 20px rgba(66,133,244,0.25);

    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  24px;
    --radius-2xl: 36px;
    --radius-full:9999px;
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- Gradient Text ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-text {
    font-weight: 900;
    background: linear-gradient(90deg, #EA4335 0%, #FBBC04 33%, #34A853 66%, #4285F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 600; font-size: 14px;
    cursor: pointer; transition: var(--transition);
    border: none; white-space: nowrap;
}
.btn-primary {
    background: var(--primary); color: white;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(66,133,244,0.35); }

.btn-ghost {
    background: transparent; color: var(--text-secondary);
    border: 1.5px solid var(--border-2);
}
.btn-ghost:hover { background: var(--bg-2); color: var(--text-primary); border-color: var(--primary); }

.btn-hero-primary {
    background: var(--primary); color: white;
    font-size: 16px; padding: 14px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(66,133,244,0.4);
}
.btn-hero-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(66,133,244,0.5); }

.btn-hero-ghost {
    background: white; color: var(--text-primary);
    font-size: 16px; padding: 14px 28px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border-2);
    box-shadow: var(--shadow-sm);
}
.btn-hero-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

.btn-white {
    background: white; color: var(--primary-dark);
    font-size: 15px; padding: 14px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-cta-ghost {
    background: transparent; color: white;
    font-size: 15px; padding: 14px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.15); }

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 14px 0; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav-container {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 36px;
}
.nav-logo {
    display: flex; align-items: center; gap: 0; margin-right: auto;
    font-size: 22px; font-weight: 900; color: var(--text-primary);
    flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; object-fit: contain; }
.logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 18px;
    flex-shrink: 0;
}
.logo-brand-name { font-size: 20px; font-weight: 900; margin-left: 2px; }
.logo-brand-name .t  { color: var(--red); }
.logo-brand-name .o1 { color: var(--yellow); }
.logo-brand-name .o2 { color: var(--yellow); }
.logo-brand-name .g  { color: var(--green); }
.logo-brand-name .i  { color: var(--blue); }
.logo-brand-name .c  { color: var(--orange); }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative; padding: 130px 0 80px;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse at center top, rgba(66,133,244,0.12), transparent 70%);
    pointer-events: none;
}
/* Decorative colored circles */
.hero-decor-1 { position:absolute; top:80px; right:10%; width:80px; height:80px; border-radius:50%; background:rgba(234,67,53,0.12); }
.hero-decor-2 { position:absolute; top:200px; right:5%; width:50px; height:50px; border-radius:50%; background:rgba(251,188,4,0.18); }
.hero-decor-3 { position:absolute; bottom:100px; left:5%; width:60px; height:60px; border-radius:50%; background:rgba(52,168,83,0.12); }
.hero-decor-4 { position:absolute; top:50px; left:8%; width:40px; height:40px; border-radius:50%; background:rgba(66,133,244,0.14); }

.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: var(--primary-dark);
    font-size: 13px; font-weight: 600;
    padding: 6px 16px; border-radius: var(--radius-full);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

.hero-title {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -2px; margin-bottom: 22px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary); max-width: 540px;
    margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13.5px; color: var(--text-secondary); font-weight: 500;
}

/* BENTO */
.hero-bento {
    display: grid;
    grid-template-columns: 230px 115px 1fr 155px;
    gap: 14px;
}
.bento-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #BFDBFE; }

.bento-main { grid-row: 1/3; }
.bento-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 8px; }
.bento-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.bento-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.bento-icon.purple { background: #EFF6FF; }
.bento-value { font-size: 50px; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.bento-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 75px; margin-top: 10px; }
.bar { flex:1; border-radius: 4px 4px 0 0; transition: height 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.bar:nth-child(1) { background: var(--blue); }
.bar:nth-child(2) { background: var(--green); }
.bar:nth-child(3) { background: var(--yellow); }
.bar:nth-child(4) { background: var(--blue); }
.bar:nth-child(5) { background: var(--red); }
.bar:nth-child(6) { background: var(--green); }
.bar:nth-child(7) { background: var(--blue); }

.bento-col { display: flex; flex-direction: column; gap: 14px; }
.bento-small { padding: 16px; position: relative; overflow: hidden; }
.bento-small.green { background: #F0FDF4; border-color: #BBF7D0; }
.bento-small.pink  { background: #FFF5F5; border-color: #FED7D7; }
.bento-small-val { font-size: 30px; font-weight: 900; }
.bento-small.green .bento-small-val { color: var(--green); }
.bento-small.pink  .bento-small-val { color: var(--red); }
.bento-small-icon { font-size: 22px; position: absolute; top: 14px; right: 14px; }
.bento-small-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; font-weight: 600; }

.bento-wide { grid-column: 3; grid-row: 1/3; }
.agenda-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.agenda-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.agenda-item:hover { background: #EFF6FF; border-color: #BFDBFE; }
.agenda-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.agenda-dot.green  { background: var(--green); }
.agenda-dot.blue   { background: var(--blue); }
.agenda-dot.yellow { background: var(--yellow); }
.agenda-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.agenda-meta { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.agenda-badge { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-full); white-space: nowrap; }
.agenda-badge.follow { background: #F0FDF4; color: var(--green); }
.agenda-badge.new    { background: #EFF6FF; color: var(--blue); }
.agenda-badge.meeting{ background: #FFFBEB; color: #92400E; }

.bento-stat { grid-column: 4; grid-row: 1/3; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-circle { position: relative; display: inline-flex; }
.stat-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-pct { font-size: 22px; font-weight: 900; color: var(--primary); }
.stat-lbl { font-size: 10px; color: var(--text-muted); }

/* ========================================================
   TRUST
   ======================================================== */
.trust-section { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-label { text-align: center; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; font-weight: 600; }
.trust-logos { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { color: var(--text-muted); font-size: 14px; font-weight: 600; transition: var(--transition); }
.trust-logo:hover { color: var(--primary); }

/* ========================================================
   STATS
   ======================================================== */
.stats-section { padding: 72px 0; background: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 32px 20px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.stat-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
    opacity: 0; transition: var(--transition);
}
.stat-card:hover { border-color: #BFDBFE; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card:hover::before { opacity: 1; }
.stat-number { font-size: 44px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 6px; font-weight: 500; }

/* ========================================================
   FEATURES
   ======================================================== */
.features-section { padding: 96px 0; background: var(--bg-2); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: #EFF6FF; border: 1px solid #BFDBFE;
    color: var(--primary-dark);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 5px 14px; border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.section-title { font-size: clamp(30px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 14px; color: var(--text-primary); }
.section-sub { font-size: 17px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 26px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card:hover { border-color: #BFDBFE; transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon-wrap { width: 50px; height: 50px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-icon { font-size: 24px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.feature-list li { font-size: 12px; color: var(--text-secondary); padding: 4px 0; border-top: 1px solid var(--border); }
.feature-list li:first-child { border-top: none; }

/* ========================================================
   HOW IT WORKS
   ======================================================== */
.how-section { padding: 96px 0; background: white; }
.steps-grid { display: flex; align-items: center; gap: 20px; margin-top: 20px; }
.step-card {
    flex: 1; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 34px 26px; text-align: center; transition: var(--transition);
}
.step-card:hover { border-color: #BFDBFE; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num { font-size: 12px; font-weight: 700; color: var(--primary); background: #EFF6FF; border-radius: var(--radius-full); padding: 4px 12px; display: inline-block; margin-bottom: 14px; letter-spacing: 1px; }
.step-icon { font-size: 38px; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.step-arrow { font-size: 26px; color: var(--text-muted); flex-shrink: 0; }

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials-section { padding: 96px 0; background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 30px; transition: var(--transition);
}
.testimonial-card.featured { border-color: #BFDBFE; background: #EFF6FF; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--yellow); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.author-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ========================================================
   CTA
   ======================================================== */
.cta-section { padding: 80px 0; background: white; }
.cta-card {
    background: linear-gradient(135deg, #1a73e8 0%, #4285F4 40%, #0d47a1 100%);
    border-radius: var(--radius-2xl); padding: 72px 56px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-blob {
    position:absolute; top:-80px; right:-80px;
    width:350px; height:350px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius:50%;
}
.cta-blob-2 {
    position:absolute; bottom:-60px; left:-60px;
    width:280px; height:280px;
    background: radial-gradient(circle, rgba(251,188,4,0.15), transparent);
    border-radius:50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(30px,4vw,48px); font-weight: 900; color: white; margin-bottom: 14px; letter-spacing: -1px; }
.cta-card p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.55); }

/* ========================================================
   FOOTER
   ======================================================== */
.footer { padding: 60px 0 28px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 60px; margin-bottom: 44px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; transition: var(--transition);
}
.social-link:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary); margin-bottom: 14px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}
/* Colored footer bar */
.footer-color-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 33%, var(--green) 66%, var(--blue) 100%);
}

/* ========================================================
   PRICING PAGE
   ======================================================== */
.pricing-hero {
    padding: 140px 0 70px; text-align: center;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
    position: relative; overflow: hidden;
}
.pricing-hero::before {
    content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
    width:700px; height:350px;
    background: radial-gradient(ellipse, rgba(66,133,244,0.1), transparent 70%);
    pointer-events: none;
}
.pricing-hero h1 { font-size: clamp(36px,5.5vw,66px); font-weight: 900; letter-spacing: -2px; margin-bottom: 18px; color: var(--text-primary); }
.pricing-hero p { font-size: 18px; color: var(--text-secondary); max-width: 460px; margin: 0 auto 36px; }

.billing-toggle {
    display: inline-flex;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-full); padding: 4px; margin-bottom: 56px;
}
.toggle-btn { padding: 9px 24px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text-secondary); border: none; background: none; }
.toggle-btn.active { background: var(--primary); color: white; box-shadow: var(--shadow-blue); }
.save-badge { background: var(--green); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); margin-left: 6px; vertical-align: middle; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 24px 80px; }
.plan-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 36px; transition: var(--transition); position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #BFDBFE; }
.plan-card.popular {
    border-color: var(--primary); border-width: 2px;
    box-shadow: 0 0 0 4px rgba(66,133,244,0.08), var(--shadow-lg);
    transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--primary); color: white;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; padding: 5px 12px; border-radius: var(--radius-full);
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { font-size: 50px; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
.plan-price .per { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 26px; line-height: 1.6; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-secondary); padding: 7px 0; border-bottom: 1px solid var(--bg-3); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li.disabled { opacity: 0.4; }
.check-icon { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.cross-icon { color: var(--text-muted); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

.plan-btn { width:100%; padding:14px; border-radius:var(--radius-md); font-size:15px; font-weight:700; cursor:pointer; border:none; transition:var(--transition); }
.plan-btn-free { background:var(--bg-2); color:var(--text-primary); border:1.5px solid var(--border-2); }
.plan-btn-free:hover { background:var(--bg-3); }
.plan-btn-premium { background:var(--primary); color:white; box-shadow:var(--shadow-blue); }
.plan-btn-premium:hover { background:var(--primary-dark); box-shadow:0 6px 28px rgba(66,133,244,0.45); transform:translateY(-1px); }
.plan-btn-enterprise { background:var(--bg-2); color:var(--primary); border:1.5px solid var(--border-2); }
.plan-btn-enterprise:hover { background:#EFF6FF; border-color:var(--primary); }

/* FAQ */
.faq-section { padding: 76px 0; background: var(--bg-2); }
.faq-grid { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: #BFDBFE; }
.faq-question { width:100%; padding:18px 22px; text-align:left; background:none; border:none; color:var(--text-primary); font-size:15px; font-weight:600; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; transition:var(--transition); font-family:inherit; }
.faq-question:hover { color:var(--primary); }
.faq-icon { font-size:20px; color:var(--text-muted); transition:var(--transition); flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); color:var(--primary); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease,padding 0.3s ease; padding:0 22px; font-size:14px; color:var(--text-secondary); line-height:1.75; }
.faq-item.open .faq-answer { max-height:300px; padding:0 22px 18px; }

/* ========================================================
   CHECKOUT
   ======================================================== */
.checkout-section { padding: 110px 0 80px; min-height: 100vh; background: var(--bg-2); }
.checkout-grid { display:grid; grid-template-columns:1fr 460px; gap:36px; align-items:start; max-width:980px; margin:0 auto; width:100%; }
.order-summary { background:white; border:1px solid var(--border); border-radius:var(--radius-xl); padding:34px; box-shadow:var(--shadow-md); }
.order-summary h2 { font-size:21px; font-weight:800; margin-bottom:22px; color:var(--text-primary); }
.order-plan-name { display:flex; align-items:center; gap:14px; padding:16px; background:#EFF6FF; border:1px solid #BFDBFE; border-radius:var(--radius-md); margin-bottom:18px; }
.order-plan-icon { width:46px; height:46px; background:linear-gradient(135deg,var(--primary),#1a73e8); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px; }
.order-plan-label { font-size:12px; color:var(--text-muted); }
.order-plan-title { font-size:16px; font-weight:700; color:var(--text-primary); }
.order-features { margin-bottom:22px; }
.order-feature-item { display:flex; gap:9px; padding:9px 0; border-bottom:1px solid var(--border); font-size:14px; color:var(--text-secondary); }
.order-feature-item:last-child { border-bottom:none; }
.order-total { background:var(--bg-2); border-radius:var(--radius-md); padding:18px; border:1px solid var(--border); }
.order-row { display:flex; justify-content:space-between; font-size:14px; padding:6px 0; color:var(--text-secondary); }
.order-row.total { font-size:19px; font-weight:800; color:var(--text-primary); border-top:1px solid var(--border); margin-top:10px; padding-top:11px; }
.order-row.discount { color:var(--green); }
.coupon-row { display:flex; gap:10px; margin-top:14px; }
.coupon-input { flex:1; }
.coupon-btn { background:var(--bg-2); border:1.5px solid var(--border-2); border-radius:var(--radius-md); padding:12px 18px; color:var(--text-primary); font-size:14px; font-weight:600; cursor:pointer; white-space:nowrap; transition:var(--transition); font-family:inherit; }
.coupon-btn:hover { background:#EFF6FF; border-color:var(--primary); color:var(--primary); }

.payment-form { background:white; border:1px solid var(--border); border-radius:var(--radius-xl); padding:34px; box-shadow:var(--shadow-md); }
.payment-form h2 { font-size:21px; font-weight:800; margin-bottom:6px; color:var(--text-primary); }
.payment-form .form-sub { font-size:14px; color:var(--text-secondary); margin-bottom:26px; }
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:var(--text-secondary); margin-bottom:7px; }
.form-input { width:100%; background:var(--bg-2); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:12px 15px; color:var(--text-primary); font-size:15px; font-family:inherit; transition:var(--transition); outline:none; }
.form-input:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(66,133,244,0.15); background:white; }
.form-input::placeholder { color:var(--text-muted); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.razorpay-btn { width:100%; padding:16px; background:linear-gradient(135deg,var(--primary),var(--primary-dark)); color:white; border:none; border-radius:var(--radius-lg); font-size:16px; font-weight:800; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:10px; transition:var(--transition); box-shadow:0 4px 20px rgba(66,133,244,0.4); margin-top:6px; font-family:inherit; }
.razorpay-btn:hover { box-shadow:0 8px 32px rgba(66,133,244,0.55); transform:translateY(-2px); }
.razorpay-btn:disabled { opacity:0.7; cursor:not-allowed; transform:none; }
.security-badges { display:flex; justify-content:center; gap:18px; margin-top:18px; flex-wrap:wrap; }
.security-badge { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-muted); }

/* Pay method */
.pay-method-card { display:flex; flex-direction:column; align-items:center; gap:5px; padding:13px 10px; background:var(--bg-2); border:1.5px solid var(--border); border-radius:var(--radius-md); cursor:pointer; transition:var(--transition); text-align:center; }
.pay-method-card:hover { background:#EFF6FF; border-color:var(--primary); }
.pay-method-card:has(input:checked) { background:#EFF6FF; border-color:var(--primary); box-shadow:0 0 0 3px rgba(66,133,244,0.12); }
.pay-icon { font-size:20px; }
.pay-name { font-size:12px; font-weight:600; color:var(--text-secondary); }

/* Success Modal */
.success-overlay { position:fixed; inset:0; background:rgba(15,23,42,0.55); backdrop-filter:blur(8px); z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:var(--transition); }
.success-overlay.show { opacity:1; pointer-events:all; }
.success-modal { background:white; border:1px solid var(--border); border-radius:var(--radius-2xl); padding:52px 44px; text-align:center; max-width:420px; transform:scale(0.9); transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1); box-shadow:var(--shadow-xl); }
.success-overlay.show .success-modal { transform:scale(1); }
.success-icon { font-size:68px; margin-bottom:14px; }
.success-modal h2 { font-size:26px; font-weight:900; margin-bottom:11px; color:var(--text-primary); }
.success-modal p { color:var(--text-secondary); font-size:15px; margin-bottom:28px; line-height:1.7; }

/* ========================================================
   INNER PAGES (Privacy, T&C, Contact, About, Refund)
   ======================================================== */
.inner-hero {
    padding: 120px 0 50px; text-align: center;
    background: linear-gradient(180deg, #EFF6FF 0%, white 100%);
    border-bottom: 1px solid var(--border);
}
.inner-hero h1 { font-size: clamp(32px,4vw,52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px; color: var(--text-primary); }
.inner-hero p { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }
.inner-updated { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

.inner-content { padding: 60px 0 80px; }
.inner-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.inner-nav { position: sticky; top: 90px; }
.inner-nav ul { list-style: none; }
.inner-nav li { margin-bottom: 4px; }
.inner-nav a { display: block; padding: 8px 14px; font-size: 14px; color: var(--text-secondary); border-radius: var(--radius-sm); transition: var(--transition); font-weight: 500; }
.inner-nav a:hover, .inner-nav a.active { background: #EFF6FF; color: var(--primary); font-weight: 600; }

.inner-body h2 { font-size: 22px; font-weight: 800; margin: 36px 0 14px; color: var(--text-primary); padding-bottom: 10px; border-bottom: 2px solid var(--bg-3); }
.inner-body h2:first-child { margin-top: 0; }
.inner-body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--text-primary); }
.inner-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.inner-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.inner-body ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.inner-body a { color: var(--primary); }
.inner-body a:hover { text-decoration: underline; }
.inner-callout { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius-md); padding: 18px 22px; margin: 20px 0; font-size: 14px; color: var(--primary-dark); line-height: 1.7; }
.inner-callout strong { font-weight: 700; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; }
.contact-info-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 22px; color: var(--text-primary); }
.contact-method { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.contact-method:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-method h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.contact-method p, .contact-method a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.contact-method a:hover { color: var(--primary); }
.contact-form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { font-size: 18px; font-weight: 800; margin-bottom: 22px; color: var(--text-primary); }
.form-textarea { width: 100%; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 12px 15px; color: var(--text-primary); font-size: 15px; font-family: inherit; transition: var(--transition); outline: none; resize: vertical; min-height: 120px; }
.form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(66,133,244,0.15); background: white; }
.form-select { width:100%; background:var(--bg-2); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:12px 15px; color:var(--text-primary); font-size:15px; font-family:inherit; transition:var(--transition); outline:none; cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }
.form-select:focus { border-color:var(--primary); }
.submit-btn { width:100%; padding:14px; background:var(--primary); color:white; border:none; border-radius:var(--radius-md); font-size:16px; font-weight:700; cursor:pointer; transition:var(--transition); font-family:inherit; box-shadow:var(--shadow-blue); }
.submit-btn:hover { background:var(--primary-dark); transform:translateY(-1px); box-shadow:0 6px 24px rgba(66,133,244,0.4); }

/* About Page */
.about-hero-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 36px; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 22px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; }
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.team-role { font-size: 13px; color: var(--text-muted); }

.value-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 28px; }
.value-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 14px; align-items: flex-start; transition: var(--transition); }
.value-card:hover { border-color: #BFDBFE; box-shadow: var(--shadow-sm); }
.value-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text-primary); }
.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ========================================================
   ANIMATIONS
   ======================================================== */
.fade-in { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease,transform 0.65s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in-delay-1 { transition-delay:0.1s; }
.fade-in-delay-2 { transition-delay:0.2s; }
.fade-in-delay-3 { transition-delay:0.3s; }
.fade-in-delay-4 { transition-delay:0.4s; }

.spinner { width:20px; height:20px; border:2px solid rgba(255,255,255,0.35); border-top-color:white; border-radius:50%; animation:spin 0.8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media(max-width:1100px){
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .hero-bento { grid-template-columns:220px 105px 1fr; grid-template-rows:auto auto auto; }
    .bento-stat { grid-column:1/-1; grid-row:auto; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
    .plans-grid { grid-template-columns:1fr; max-width:420px; }
    .plan-card.popular { transform:scale(1); }
    .plan-card.popular:hover { transform:translateY(-6px); }
    .checkout-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr; gap:36px; }
    .footer-links { grid-template-columns:repeat(2,1fr); }
    .inner-layout { grid-template-columns:1fr; }
    .inner-nav { position:static; }
    .contact-grid { grid-template-columns:1fr; }
    .team-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
    .nav-links,.nav-actions { display:none; }
    .hamburger { display:flex; }
    .nav-links.open { display:flex; flex-direction:column; position:fixed; top:0;left:0;right:0; background:rgba(255,255,255,0.98); backdrop-filter:blur(20px); padding:76px 24px 36px; gap:22px; z-index:999; border-bottom:1px solid var(--border); box-shadow:var(--shadow-lg); }
    .nav-links.open a { font-size:17px; }
    .hero { padding:95px 0 56px; }
    .hero-bento { display:none; }
    .steps-grid { flex-direction:column; }
    .step-arrow { transform:rotate(90deg); }
    .testimonials-grid { grid-template-columns:1fr; }
    .cta-card { padding:44px 22px; }
    .checkout-section { padding:90px 0 56px; }
    .form-row { grid-template-columns:1fr; }
    .value-cards { grid-template-columns:1fr; }
    .team-grid { grid-template-columns:1fr; }
}
