/* =========================================
   SWAHUB - RESPONSIVE.CSS
   Tablet / Mobile / Small screens
========================================= */

/* ---------- Large Tablet / Small Laptop ---------- */
@media (max-width: 1200px) {
    .container {
      width: min(100% - 36px, 1100px);
    }
  
    .hero-grid,
    .page-hero-grid {
      gap: 32px;
    }
  
    .hero-content h1,
    .page-hero-content h1 {
      font-size: clamp(36px, 4.6vw, 58px);
    }
  
    .section-heading h2 {
      font-size: clamp(28px, 3.8vw, 42px);
    }
  
    .benefit-grid,
    .trust-grid,
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: 1.2fr 0.9fr 0.9fr;
      gap: 24px;
    }
  }
  
  /* ---------- Tablet ---------- */
  @media (max-width: 992px) {
    :root {
      --space-8: 48px;
      --space-9: 60px;
    }
  
    .site-header {
      backdrop-filter: blur(14px);
    }
  
    .navbar {
      min-height: 74px;
    }
  
    .nav-links {
      position: absolute;
      top: calc(100% + 10px);
      left: 18px;
      right: 18px;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--color-shadow);
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links a {
      width: 100%;
      font-size: 15px;
    }
  
    .nav-links a.active::after,
    .nav-links a:hover::after {
      display: none;
    }
  
    .menu-toggle {
      display: inline-flex;
    }
  
    .nav-actions .btn {
      display: none;
    }
  
    .hero-grid,
    .page-hero-grid,
    .split-cards,
    .role-cta-grid,
    .footer-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .hero-grid,
    .page-hero-grid {
      align-items: start;
    }
  
    .hero-content,
    .page-hero-content,
    .page-hero-panel,
    .hero-card {
      width: 100%;
    }
  
    .hero-content h1,
    .page-hero-content h1 {
      max-width: 100%;
      font-size: clamp(34px, 6vw, 52px);
    }
  
    .hero-text,
    .page-hero-text {
      max-width: 100%;
      font-size: 17px;
    }
  
    .hero-card,
    .page-hero-panel {
      margin-top: 10px;
    }
  
    .process-grid::before {
      display: none;
    }
  
    .section {
      padding: 56px 0;
    }
  
    .section-heading {
      margin-bottom: 32px;
    }
  
    .section-heading h2 {
      font-size: clamp(28px, 5vw, 38px);
    }
  
    .section-heading p {
      font-size: 16px;
    }
  
    .benefit-grid,
    .trust-grid,
    .process-grid {
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
  
    .contact-form-wrap {
      padding: 24px;
    }
  
    .footer-grid {
      gap: 28px;
    }
  
    .footer-brand p {
      max-width: 100%;
    }
  }
  
  /* ---------- Mobile ---------- */
  @media (max-width: 768px) {
    :root {
      --radius-lg: 18px;
      --radius-xl: 22px;
      --space-7: 32px;
      --space-8: 40px;
      --space-9: 48px;
    }
  
    body {
      line-height: 1.6;
    }
  
    .container {
      width: min(100% - 24px, 100%);
    }
  
    .site-header {
      border-bottom: 1px solid rgba(199, 213, 234, 0.7);
    }
  
    .navbar {
      min-height: 68px;
      gap: 12px;
    }
  
    .brand-logo {
      width: 36px;
      height: 36px;
    }
  
    .brand-text {
      font-size: 20px;
    }
  
    .nav-links {
      left: 12px;
      right: 12px;
      top: calc(100% + 8px);
      padding: 18px;
      gap: 14px;
    }
  
    .hero-section,
    .page-hero {
      padding: 64px 0 44px;
    }
  
    .hero-content h1,
    .page-hero-content h1 {
      font-size: clamp(30px, 8vw, 42px);
      line-height: 1.08;
    }
  
    .hero-text,
    .page-hero-text {
      font-size: 16px;
      margin-bottom: 22px;
    }
  
    .eyebrow {
      font-size: 11px;
      padding: 6px 12px;
      margin-bottom: 12px;
    }
  
    .hero-actions,
    .card-actions,
    .form-actions,
    .section-action {
      flex-direction: column;
      align-items: stretch;
    }
  
    .hero-actions .btn,
    .card-actions .btn,
    .form-actions .btn,
    .section-action .btn {
      width: 100%;
    }
  
    .hero-inline-points,
    .hero-trust,
    .access-points {
      gap: 10px;
    }
  
    .hero-inline-points span {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  
    .trust-item,
    .access-point {
      flex: 1 1 100%;
    }
  
    .hero-card-inner,
    .hero-panel-card,
    .info-card,
    .benefit-card,
    .trust-card,
    .process-card,
    .role-cta-card,
    .contact-form-wrap,
    .founder-note {
      padding: 22px;
    }
  
    .split-cards,
    .role-cta-grid,
    .benefit-grid,
    .trust-grid,
    .process-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .section {
      padding: 48px 0;
    }
  
    .section-heading {
      margin-bottom: 26px;
    }
  
    .section-heading h2 {
      font-size: clamp(24px, 7vw, 34px);
      line-height: 1.15;
    }
  
    .section-heading p {
      font-size: 15px;
    }
  
    .mini-label,
    .card-tag {
      font-size: 11px;
    }
  
    .flow-item,
    .hero-panel-item {
      gap: 12px;
    }
  
    .flow-step,
    .process-number {
      width: 36px;
      height: 36px;
      font-size: 13px;
      border-radius: 10px;
    }
  
    .flow-item h4,
    .hero-panel-item h4,
    .process-card h4,
    .benefit-card h3,
    .info-card h3,
    .trust-card h4,
    .role-cta-card h3 {
      font-size: 17px;
    }
  
    .flow-item p,
    .hero-panel-item p,
    .process-card p,
    .benefit-card p,
    .info-card p,
    .trust-card p,
    .role-cta-card p,
    .faq-item p {
      font-size: 14px;
    }
  
    .founder-note h2 {
      font-size: clamp(24px, 7vw, 32px);
    }
  
    .founder-note p {
      font-size: 15px;
    }
  
    .faq-item {
      padding: 18px;
    }
  
    .faq-item summary {
      font-size: 15px;
      line-height: 1.45;
      padding-right: 22px;
    }
  
    .contact-form-wrap {
      padding: 20px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .form-group input,
    .form-group textarea,
    .form-group select {
      min-height: 48px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .footer-links h4 {
      margin-bottom: 10px;
    }
  
    .footer-links a {
      margin-bottom: 8px;
    }
  
    .footer-bottom {
      padding: 16px 0 24px;
    }
  
    .footer-bottom p {
      font-size: 13px;
    }
  }
  
  /* ---------- Small Mobile ---------- */
  @media (max-width: 520px) {
    .container {
      width: min(100% - 20px, 100%);
    }
  
    .navbar {
      min-height: 64px;
    }
  
    .brand-logo {
      width: 34px;
      height: 34px;
    }
  
    .brand-text {
      font-size: 18px;
    }
  
    .menu-toggle {
      width: 42px;
      height: 42px;
      border-radius: 10px;
    }
  
    .hero-section,
    .page-hero {
      padding: 56px 0 38px;
    }
  
    .hero-content h1,
    .page-hero-content h1 {
      font-size: 29px;
    }
  
    .hero-text,
    .page-hero-text {
      font-size: 15px;
    }
  
    .hero-card-inner,
    .hero-panel-card,
    .info-card,
    .benefit-card,
    .trust-card,
    .process-card,
    .role-cta-card,
    .contact-form-wrap,
    .founder-note {
      padding: 18px;
    }
  
    .section {
      padding: 40px 0;
    }
  
    .section-heading h2 {
      font-size: 23px;
    }
  
    .btn {
      min-height: 46px;
      padding: 0 18px;
      font-size: 14px;
    }
  
    .hero-inline-points span,
    .access-point,
    .trust-item {
      padding: 12px 14px;
    }
  
    .faq-item summary::after {
      font-size: 20px;
    }
  
    .ordered-flow,
    .info-card ul,
    .info-card ol {
      padding-left: 18px;
    }
  }
  
  /* ---------- Very Small Devices ---------- */
  @media (max-width: 380px) {
    .brand-text {
      font-size: 17px;
    }
  
    .hero-content h1,
    .page-hero-content h1 {
      font-size: 26px;
    }
  
    .section-heading h2 {
      font-size: 22px;
    }
  
    .btn {
      font-size: 13px;
    }
  
    .hero-inline-points span {
      font-size: 13px;
    }
  }