/*
Theme Name: StudentNote
Theme URI: https://studentnote.in
Author: StudentNote Team
Description: Smart School Management Software Theme
Version: 2.0.0
Text Domain: studentnote
*/

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

:root {
  --purple-50: #EEEDFE;
  --purple-100: #CECBF6;
  --purple-200: #AFA9EC;
  --purple-400: #7F77DD;
  --purple-600: #534AB7;
  --purple-800: #3C3489;
  --purple-900: #26215C;
  --blue-600: #185FA5;
  --white: #ffffff;
  --gray-50: #F8F9FC;
  --gray-100: #F1F0F9;
  --border: #E5E7EB;
  --text-dark: #1a1a2e;
  --text-muted: #6B7280;
  --shadow-sm: 0 1px 3px rgba(83,74,183,0.08);
  --shadow-md: 0 4px 20px rgba(83,74,183,0.12);
  --shadow-lg: 0 10px 40px rgba(83,74,183,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --gradient: linear-gradient(135deg, #534AB7 0%, #185FA5 100%);
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

.section-tag {
  display: inline-block;
  background: var(--purple-50);
  color: var(--purple-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto 50px; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; transition: all 0.2s ease; border: 2px solid transparent; }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--purple-600); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-purple { background: transparent; color: var(--purple-600); border: 2px solid var(--purple-600); }
.btn-outline-purple:hover { background: var(--purple-50); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--purple-900); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 24px; display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.top-bar a { color: var(--purple-200); }
.top-bar span { display: flex; align-items: center; gap: 6px; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 999; background: rgba(83,74,183,0.97); backdrop-filter: blur(12px); padding: 0 24px; height: 68px; display: flex; align-items: center; box-shadow: 0 2px 20px rgba(83,74,183,0.3); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span { color: var(--purple-200); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.15); }
.nav-cta { background: var(--white); color: var(--purple-600); padding: 9px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; border: none; transition: all 0.2s; margin-left: 8px; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ===== HERO ===== */
.hero { background: var(--gradient); padding: 90px 24px 80px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 13px; padding: 6px 16px; border-radius: 30px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; line-height: 1.12; margin-bottom: 22px; }
.hero h1 .highlight { color: var(--purple-200); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 38px; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ===== LOGO MARQUEE ===== */
.logo-strip { background: var(--white); padding: 28px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.logo-strip-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; align-items: center; }
.marquee-item { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 24px; font-size: 14px; font-weight: 700; color: var(--text-muted); white-space: nowrap; min-width: 140px; text-align: center; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stats-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  flex: 1;
  min-width: 160px;   /* ← Yahan 140 se 160 kiya */
}
.stats-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--border);
}
.stats-item:last-child::after { display: none; }
.stats-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  flex: 1;
  min-width: 180px;
}

.stats-number {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.stats-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
  white-space: nowrap;  /* ← Yeh bhi add karo */
}

/* ===== FOR PILLS ===== */
.for-section { padding: 50px 0; text-align: center; }
.for-pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.for-pill { display: flex; align-items: center; gap: 10px; background: var(--purple-50); color: var(--purple-600); border: 1.5px solid var(--purple-100); padding: 12px 28px; border-radius: 40px; font-size: 15px; font-weight: 700; transition: all 0.2s; }
.for-pill:hover { background: var(--purple-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); transform: scaleX(0); transition: transform 0.3s; }
.feature-card:hover { border-color: var(--purple-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--purple-50); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 26px; height: 26px; stroke: var(--purple-600); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== INTEGRATIONS ===== */
.integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 920px; margin: 0 auto; }
.integration-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px 22px; text-align: center; transition: all 0.25s; }
.integration-card:hover { border-color: var(--purple-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.int-icon-wrap { width: 64px; height: 64px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.integration-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.integration-card p { font-size: 12px; color: var(--text-muted); }

/* ===== APPS ===== */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.app-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.25s; }
.app-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--purple-200); }
.app-icon { width: 72px; height: 72px; border-radius: var(--radius-xl); background: var(--gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.app-icon svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.app-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.app-card p { font-size: 14px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all 0.25s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.testimonial-card .quote-icon { font-size: 48px; color: var(--purple-100); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.rating { color: #F59E0B; font-size: 13px; margin-top: 2px; }

/* ===== VIDEO ===== */
.video-section { background: var(--gradient); padding: 80px 24px; text-align: center; color: #fff; }
.video-section h2 { color: #fff; margin-bottom: 14px; font-size: clamp(26px,3.5vw,36px); font-weight: 800; }
.video-section p { color: rgba(255,255,255,0.82); margin: 0 auto 36px; font-size: 17px; max-width: 500px; }
.video-wrapper { max-width: 780px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.video-placeholder { background: var(--purple-900); padding: 80px 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; cursor: pointer; transition: all 0.2s; }
.video-placeholder:hover { background: #1a1650; }
.play-btn { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,0.5); }
.play-btn svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.price-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 36px 32px; transition: all 0.25s; }
.price-card.featured { border: 2.5px solid var(--purple-600); position: relative; box-shadow: var(--shadow-md); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 18px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--purple-600); margin-bottom: 6px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--text-dark); line-height: 1; margin: 16px 0 4px; }
.price-amount sup { font-size: 24px; vertical-align: super; font-weight: 700; }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-features { margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--gray-50); }
.price-features li:last-child { border-bottom: none; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--purple-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { width: 12px; height: 12px; stroke: var(--purple-600); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-addon { max-width: 640px; margin: 40px auto 0; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-radius: var(--radius-lg); padding: 24px 28px; display: flex; align-items: center; gap: 20px; color: var(--white); }
.wa-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-icon svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-addon h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.whatsapp-addon p { font-size: 14px; opacity: 0.9; }

/* ===== CTA ===== */
.cta-section { background: var(--gradient); padding: 80px 24px; text-align: center; color: var(--white); }
.cta-section h2 { font-size: clamp(28px,4vw,40px); font-weight: 800; margin-bottom: 16px; color: #fff; }
.cta-section p { font-size: 17px; opacity: 0.85; max-width: 480px; margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--purple-900); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .nav-logo { font-size: 24px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.float-wa { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-demo { background: var(--gradient); color: #fff; padding: 12px 20px; border-radius: 28px; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-lg); white-space: nowrap; transition: transform 0.2s; opacity: 0; pointer-events: none; }
.float-demo:hover { transform: translateY(-2px); }

/* ===== STICKY MOBILE BAR ===== */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--gradient); z-index: 9998; padding: 12px 16px; flex-direction: row; gap: 10px; box-shadow: 0 -4px 16px rgba(83,74,183,0.3); }
.sticky-mobile-bar a { flex: 1; text-align: center; padding: 11px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.sticky-mobile-bar a.primary { background: var(--white); color: var(--purple-600); border-color: transparent; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 15px; font-family: inherit; color: var(--text-dark); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple-400); box-shadow: 0 0 0 3px rgba(83,74,183,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; background: var(--purple-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--purple-600); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--purple-800); padding: 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); z-index: 998; }
  .nav-links.open a { padding: 12px 16px; font-size: 16px; }
  .hero-stats { gap: 24px; }
  .stats-item { min-width: 45%; padding: 20px 16px; }
  .stats-item::after { display: none; }
  .stats-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .float-btns { bottom: 90px; }
  .top-bar { display: none; }
  .whatsapp-addon { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== INTEGRATIONS NEW ===== */
.integrations-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.int-card-new {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.int-card-new:hover {
  border-color: var(--purple-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.int-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.int-card-new h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.int-card-new p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Biometric Special Card */
.int-card-biometric-new {
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}

.int-bio-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.int-bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.int-bio-content {
  padding: 20px 16px;
  text-align: center;
}

.int-bio-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.int-bio-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .integrations-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .integrations-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ===== PRICING NEW ===== */
.pricing-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 0;
  align-items: stretch;
}

.price-card-new {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.price-card-new:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.plan-label {
  display: inline-block;
  background: var(--purple-50);
  color: var(--purple-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.price-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.price-card-body {
  padding: 24px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-600);
}

.price-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--purple-600);
  line-height: 1;
}

.price-suffix {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-50);
}

.price-list li:last-child { border-bottom: none; }

.price-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--purple-600);
}

/* Pro card */
.price-card-pro {
  background: var(--gradient);
  border-color: transparent;
  position: relative;
}

.pro-popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.price-card-pro .price-card-header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.price-list-white li {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.1);
}

.price-list-white li svg { stroke: rgba(255,255,255,0.9); }

.price-btn-outline {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  color: var(--purple-600);
  border: 2px solid var(--purple-600);
  transition: all 0.2s;
}
.price-btn-outline:hover { background: var(--purple-50); }

.price-btn-white {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: var(--white);
  color: var(--purple-600);
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.price-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* WhatsApp Addon New */
.wa-addon-new {
  max-width: 820px;
  margin: 28px auto 0;
  background: #fff;
  border: 2px solid #25D366;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.15);
}

.wa-addon-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wa-addon-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-addon-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.wa-addon-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.wa-addon-right {
  text-align: center;
  flex-shrink: 0;
}

.wa-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.wa-price-num {
  font-size: 32px;
  font-weight: 900;
  color: #128C7E;
  line-height: 1;
}

.wa-price-label {
  font-size: 13px;
  color: var(--text-muted);
}

.wa-badge {
  display: inline-block;
  background: #E7F9EE;
  color: #128C7E;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* Mobile */
@media (max-width: 640px) {
  .pricing-grid-new { grid-template-columns: 1fr; }
  .wa-addon-new { flex-direction: column; text-align: center; }
  .wa-addon-left { flex-direction: column; text-align: center; }
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-dropdown-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-dropdown-btn svg {
  transition: transform 0.25s;
}

.nav-dropdown-btn.open svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(83,74,183,0.18);
  min-width: 210px;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 1000;
  animation: dropdownFade 0.2s ease;
}

.nav-dropdown-menu.open {
  display: block;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e !important;
  transition: all 0.15s;
  border-bottom: 1px solid var(--border);
  text-decoration: none !important;
  white-space: nowrap;
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item svg {
  stroke: var(--purple-600);
  flex-shrink: 0;
}

.nav-dropdown-item:hover {
  background: var(--purple-50);
  color: var(--purple-600);
  padding-left: 22px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    margin: 4px 0;
    animation: none;
  }

  .nav-dropdown-item {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.1);
    padding: 11px 20px;
    font-size: 15px;
  }

  .nav-dropdown-item svg { stroke: rgba(255,255,255,0.85); }

  .nav-dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 26px;
  }
}