/* ============================================================
   PAYKUT BUSINESS — style.css
   Core fix: every section uses .container for width control.
   No text stretching, no horizontal overflow.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green:       #2a9d5c;
  --green-dark:  #1a6b3a;
  --green-light: #4ade80;
  --green-pale:  #f0fdf4;
  --green-mid:   #d1fae5;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --white:       #ffffff;
  --bg-light:    #f9fafb;

  /* THE KEY: one variable controls all content width */
  --container-width: 1160px;
  --container-pad:   clamp(20px, 5vw, 80px);
}

/* ---------- THE CONTAINER — this is what prevents stretching ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- SECTION SPACING ---------- */
section { padding: 80px 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { line-height: 1.7; color: var(--text-muted); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green-dark);
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  border: 2px solid var(--green); transition: all .2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-dark);
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: all .2s;
}
.btn-white:hover { background: var(--green-pale); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4); transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ---------- SECTION HEADER ---------- */
.section-tag {
  display: inline-block;
  background: var(--green-pale); color: var(--green-dark);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .85rem;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 14px; letter-spacing: .03em; text-transform: uppercase;
  border: 1px solid var(--green-mid);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px; width: 38px; border-radius: 8px; object-fit: cover;
}
.nav-logo span {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: var(--green-dark);
  white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: .92rem; font-weight: 500; color: #444;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  font-weight: 600 !important; border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 20px 16px; border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a {
  padding: 10px 12px; border-radius: 8px;
  font-size: .95rem; font-weight: 500; color: #444;
}
.mobile-menu a:hover { background: var(--green-pale); color: var(--green); }
.mobile-menu .nav-cta {
  background: var(--green) !important; color: #fff !important;
  border-radius: 50px !important; text-align: center; margin-top: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0a2a17 0%, #1a6b3a 50%, #0f3d25 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,222,128,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.15); color: var(--green-light);
  border: 1px solid rgba(74,222,128,.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.12; margin-bottom: 20px;
}
.hero h1 span { color: var(--green-light); }
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: #fff;
}
.hero-stat .lbl {
  font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px;
}

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-wrap {
  position: relative; width: 280px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.phone-wrap img {
  width: 100%; border-radius: 36px;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.float-card.fc1 { top: 15%; right: -60px; }
.float-card.fc2 { bottom: 20%; left: -60px; }
.float-card .icon { font-size: 1.4rem; }
.float-card .t1 { font-size: .75rem; color: rgba(255,255,255,.7); }
.float-card .t2 { font-size: .95rem; font-weight: 700; color: #fff; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 0;
}
.trust-track {
  display: flex; gap: 0;
  animation: scroll-trust 25s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  font-size: .88rem; font-weight: 600; color: #555;
  white-space: nowrap; border-right: 1px solid var(--border);
}
@keyframes scroll-trust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff; border-radius: 20px;
  padding: 32px; border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(42,157,92,.12); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: .92rem; flex: 1; }
.service-price {
  display: inline-block; margin-top: 16px;
  background: var(--green-pale); color: var(--green-dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
}
.service-arrow {
  display: flex; align-items: center; gap: 6px;
  color: var(--green); font-weight: 600; font-size: .9rem;
  margin-top: 14px;
}
.service-cta-card {
  background: linear-gradient(135deg, var(--green-dark), #0f3d25);
  border-color: transparent;
}
.service-cta-card h3 { color: #fff; }
.service-cta-card p { color: rgba(255,255,255,.7); }
.service-cta-card .service-arrow { color: var(--green-light); }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section { background: #fff; }
.app-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.app-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.app-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--text-muted);
}
.app-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.app-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-dark); color: #fff;
  padding: 12px 22px; border-radius: 14px;
  transition: background .2s;
}
.app-btn:hover { background: var(--green); }
.app-btn i { font-size: 1.4rem; }
.app-btn .t1 { font-size: .72rem; opacity: .8; }
.app-btn .t2 { font-size: .95rem; font-weight: 700; }
.app-phones {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  align-items: start;
}
.app-phones img {
  border-radius: 24px; width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.app-phones img:first-child { margin-top: 32px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: linear-gradient(135deg, var(--green-dark), #0f3d25); }
.stats-section .section-tag { background: rgba(74,222,128,.15); color: var(--green-light); border-color: rgba(74,222,128,.3); }
.stats-section h2 { color: #fff; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
}
.stat-card .num {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: var(--green-light); margin-bottom: 6px;
}
.stat-card .lbl { font-size: .88rem; color: rgba(255,255,255,.7); }

/* ============================================================
   WHY PAYKUT
   ============================================================ */
.why-section { background: var(--bg-light); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: #fff; padding: 32px;
  border-radius: 20px; border: 1px solid var(--border);
}
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: .92rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  text-align: center; padding: 96px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a1f0f; color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand img {
  height: 44px; width: 44px; border-radius: 10px;
  object-fit: cover; margin-bottom: 14px;
}
.footer-brand .brand-name {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: #fff; margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-items: center;
  color: rgba(255,255,255,.7); transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .95rem; color: #fff; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.6);
  padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.4);
}

/* ============================================================
   PAGE-SPECIFIC: SERVICE PAGES HERO
   ============================================================ */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #0a2a17, #1a6b3a);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.08rem; max-width: 580px; margin: 0 auto 28px; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 20px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.page-hero .breadcrumb a { color: var(--green-light); }

/* ============================================================
   FEATURES GRID (used on service pages)
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: #fff; padding: 28px;
  border-radius: 18px; border: 1px solid var(--border);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-pale); display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-card {
  background: #fff; border-radius: 24px;
  border: 2px solid var(--border); padding: 36px;
  position: relative; transition: box-shadow .25s;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.pricing-card.popular {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(42,157,92,.15);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  padding: 5px 18px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.pricing-card .plan-name {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.1rem; margin-bottom: 8px;
}
.pricing-card .plan-price {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 2.4rem; color: var(--green-dark); margin-bottom: 4px;
}
.pricing-card .plan-period { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem; color: var(--text-muted);
}
.plan-features li i { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   APP SCREENSHOTS CAROUSEL (horizontal scroll)
   ============================================================ */
.screenshots-row {
  display: flex; gap: 20px; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshots-row::-webkit-scrollbar { height: 4px; }
.screenshots-row::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.screenshots-row::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
.screenshots-row img {
  height: 480px; width: auto; border-radius: 24px;
  scroll-snap-align: start; flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mission-card {
  background: #fff; padding: 36px;
  border-radius: 20px; border: 1px solid var(--border);
}
.mission-card h3 { margin-bottom: 12px; }
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.founder-card {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  text-align: center;
}
.founder-card img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
.founder-info { padding: 24px; }
.founder-info h3 { margin-bottom: 4px; }
.founder-info .role { color: var(--green); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.recognition-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.recognition-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border); padding: 24px;
  text-align: center;
}
.recognition-card .icon { font-size: 2rem; margin-bottom: 10px; }
.recognition-card p { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; padding: 20px; border-radius: 16px;
  border: 1px solid var(--border);
}
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-pale); display: grid; place-items: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: .88rem; color: var(--text-muted); }
.contact-form { background: #fff; border-radius: 24px; padding: 40px; border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.blog-thumb {
  background: linear-gradient(135deg, var(--green-pale), var(--green-mid));
  height: 180px; display: grid; place-items: center; font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  padding: 4px 12px; border-radius: 50px;
  font-size: .75rem; font-weight: 600; margin-bottom: 10px;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: .88rem; margin-bottom: 14px; }
.blog-meta { font-size: .8rem; color: #9ca3af; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 110px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .app-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
  .float-card { display: none; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}
@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .recognition-grid { grid-template-columns: 1fr 1fr; }
}
