/* ============================================================
   RENOT IT SOLUTIONS — MASTER STYLESHEET
   Brisbane's Enterprise IT Partner
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --navy:         #061A40;
  --navy-mid:     #0D2B55;
  --navy-light:   #1A3A6B;
  --blue:         #0369A1;
  --blue-mid:     #0284C7;
  --accent:       #06B6D4;
  --accent-light: #22D3EE;
  --accent-glow:  rgba(6,182,212,0.3);
  --green:        #10B981;
  --orange:       #F59E0B;
  --red:          #EF4444;
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1E293B;
  --gray-900:     #0F172A;

  --gradient-hero:    linear-gradient(135deg, #061A40 0%, #0D2B55 50%, #0369A1 100%);
  --gradient-accent:  linear-gradient(135deg, #06B6D4, #0369A1);
  --gradient-dark:    linear-gradient(180deg, #061A40 0%, #0D1B2E 100%);
  --gradient-card:    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(6,182,212,0.2);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  --container-max: 1280px;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.display-1  { font-size: clamp(2.8rem, 6vw, 5rem);   font-weight: 900; letter-spacing: -0.03em; }
.display-2  { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h1          { font-size: clamp(2rem, 4vw, 3rem);       font-weight: 800; }
h2          { font-size: clamp(1.75rem, 3vw, 2.5rem);  font-weight: 700; }
h3          { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; }
h4          { font-size: 1.25rem; font-weight: 600; }
h5          { font-size: 1.1rem;  font-weight: 600; }
h6          { font-size: 1rem;    font-weight: 600; }

p { color: var(--gray-600); line-height: 1.7; }

.lead { font-size: 1.2rem; color: var(--gray-600); line-height: 1.7; }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }

.text-white   { color: var(--white) !important; }
.text-navy    { color: var(--navy) !important; }
.text-accent  { color: var(--accent) !important; }
.text-green   { color: var(--green) !important; }
.text-orange  { color: var(--orange) !important; }
.text-muted   { color: var(--gray-400) !important; }
.text-gray    { color: var(--gray-500) !important; }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.font-bold    { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase    { text-transform: uppercase; letter-spacing: 0.1em; }

/* Section label */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title  { color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; max-width: 640px; }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm  { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.container-lg  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section        { padding: 96px 0; }
.section-sm     { padding: 64px 0; }
.section-lg     { padding: 120px 0; }
.section-dark   { background: var(--navy); }
.section-navy   { background: var(--navy); }
.section-gray   { background: var(--gray-50); }
.section-alt    { background: var(--gray-100); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }

.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg  { padding: 18px 40px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 48px; font-size: 1.1rem; font-weight: 700; }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6,182,212,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.5);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 14px 24px;
}
.btn-ghost:hover { color: var(--accent); }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6,26,64,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.light-nav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.navbar.light-nav .nav-link,
.navbar.light-nav .brand-text { color: var(--navy) !important; }
.navbar.light-nav .hamburger span { background: var(--navy); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.18));
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-accent { color: var(--accent); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 24px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
  border-top: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-decoration: none;
  color: var(--gray-700);
}
.dropdown-item:hover { background: var(--gray-50); color: var(--navy); }

.dropdown-item-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-item-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.dropdown-item-text p { font-size: 0.78rem; color: var(--gray-400); line-height: 1.4; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(3,105,161,0.2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

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

.hero-content {
  max-width: 750px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(6,182,212,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(6,182,212,0.8), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ============================================================
   8. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-value .accent { color: var(--accent); }

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-200);
}

/* ============================================================
   9. SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(6,182,212,0.2);
}

.card-accent {
  border-left: 4px solid var(--accent);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

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

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(3,105,161,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-accent);
  transform: scale(1.1);
}

/* Problem card */
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(6,182,212,0.3);
}

.problem-icon {
  width: 48px; height: 48px;
  background: rgba(239,68,68,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.solution-card .problem-icon {
  background: rgba(16,185,129,0.1);
}

/* Feature card */
.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-card:hover { background: var(--gray-50); }

/* Team card */
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-card-body { padding: 20px; }

/* Icon box */
.icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-box-accent { background: rgba(6,182,212,0.12); }
.icon-box-blue   { background: rgba(3,105,161,0.12); }
.icon-box-green  { background: rgba(16,185,129,0.12); }
.icon-box-orange { background: rgba(245,158,11,0.12); }

/* Blog card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card-image {
  width: 100%; height: 220px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.blog-card-body { padding: 28px; }

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6,182,212,0.1);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* ============================================================
   11. PRICING
   ============================================================ */
.pricing-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  margin: 0 auto 56px;
}

.pricing-toggle-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition-fast);
  cursor: pointer;
}
.pricing-toggle-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: var(--gradient-hero);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin: 16px 0 8px;
  color: var(--navy);
}
.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price sup { font-size: 1.5rem; font-weight: 700; }
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: 0.7; }

.pricing-period {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 24px 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }

.pricing-feature-icon {
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card.featured .pricing-feature-icon {
  background: rgba(6,182,212,0.2);
  color: var(--accent-light);
}

/* ============================================================
   12. FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

/* Radio/checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  color: var(--gray-700);
}
.radio-item:hover, .checkbox-item:hover {
  border-color: var(--accent);
  background: rgba(6,182,212,0.04);
}
.radio-item input[type="radio"],
.checkbox-item input[type="checkbox"] { accent-color: var(--accent); }

/* Step form */
.form-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.form-step {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.form-step.active { background: var(--accent); }
.form-step.done   { background: var(--green); }

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.testimonial-card.dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card.dark .testimonial-quote { color: rgba(255,255,255,0.8); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-card.dark .author-name { color: var(--white); }
.author-role { font-size: 0.82rem; color: var(--gray-400); }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--gray-600);
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); }

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active { background: var(--accent); width: 24px; border-radius: var(--radius-full); }

/* ============================================================
   14. ACCORDION / FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 12px;
}

.faq-item.open { border-color: rgba(6,182,212,0.3); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  transition: var(--transition-fast);
  background: var(--white);
}
.faq-question:hover { background: var(--gray-50); }

.faq-icon {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-500);
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(6,182,212,0.1); color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
}
.faq-answer.open { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   15. TABS
   ============================================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   16. CTA BANNERS
   ============================================================ */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner-content { position: relative; z-index: 2; }

.cta-inline {
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(3,105,161,0.08));
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   17. PROCESS / TIMELINE
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--gradient-accent);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(6,182,212,0.08);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   18. BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-accent  { background: rgba(6,182,212,0.1); color: var(--accent); }
.badge-green   { background: rgba(16,185,129,0.1); color: var(--green); }
.badge-orange  { background: rgba(245,158,11,0.1); color: var(--orange); }
.badge-navy    { background: rgba(6,26,64,0.08); color: var(--navy); }

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.check-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   19. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-dark::after { background: var(--navy); }

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-link:hover { background: var(--accent); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-link:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-cert {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cert-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* Contact info in footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   21. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   22. BLOG / ARTICLE
   ============================================================ */
.article-body h2 { font-size: 1.75rem; margin: 40px 0 16px; color: var(--navy); }
.article-body h3 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--navy); }
.article-body p  { margin-bottom: 20px; color: var(--gray-600); line-height: 1.8; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; }
.article-body li { margin-bottom: 8px; color: var(--gray-600); line-height: 1.7; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-highlight {
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(3,105,161,0.06));
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.article-highlight p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   23. TABLES
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}
.comparison-table th.highlight { background: var(--accent); }

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-700);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table td.check { color: var(--green); font-weight: 700; }
.comparison-table td.cross { color: var(--red); }

/* ============================================================
   24. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.9); }
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================================
   25. UTILITIES
   ============================================================ */
.relative  { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full    { width: 100%; }
.hidden    { display: none; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 40px 0;
}

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

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

/* Number highlight */
.number-highlight {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

/* Warning box */
.warning-box {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Success box */
.success-box {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

/* Industry tag pills */
.industry-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition-fast);
  text-decoration: none;
}
.industry-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(6,182,212,0.04);
}

/* ============================================================
   26. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .hamburger { display: flex; }

  .navbar-menu {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .navbar-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }

  .nav-link { padding: 12px 16px; font-size: 1rem; }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 4px;
    display: none;
    min-width: unset;
  }

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

  .dropdown-item-text p { display: none; }
  .dropdown-grid { grid-template-columns: 1fr; }

  .navbar-menu .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-trust { gap: 16px; }
  .trust-item { font-size: 0.8rem; }

  /* Layouts */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar .container { gap: 24px; }
  .stat-divider { display: none; }

  /* CTA */
  .cta-inline {
    flex-direction: column;
    text-align: center;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Pricing */
  .pricing-card.featured { transform: none; }

  /* Form card */
  .form-card { padding: 28px 20px; }

  /* Blog */
  .hero-cta { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero-title { font-size: 2.2rem; }
  .cta-banner { padding: 40px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}
