/* =========================================
   UpgradePe - Main Stylesheet
   Color: Off-White + Navy + Electric Blue
========================================= */

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

:root {
  --navy:       #1a2744;
  --navy-light: #243460;
  --blue:       #3B82F6;
  --blue-light: #60A5FA;
  --blue-pale:  #EBF4FF;
  --offwhite:   #F8F9FC;
  --white:      #FFFFFF;
  --gray-100:   #E8EDF5;
  --gray-200:   #D1D9EB;
  --gray-600:   #6B7280;
  --gray-800:   #374151;
  --success:    #10B981;
  --shadow-sm:  0 2px 8px rgba(26,39,68,0.08);
  --shadow-md:  0 8px 30px rgba(26,39,68,0.12);
  --shadow-lg:  0 20px 60px rgba(26,39,68,0.15);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--offwhite);
  color: var(--gray-800);
  line-height: 1.7;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- UTILITIES ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(59,130,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* ---- SECTION HEADING ---- */
.section-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray-600);
  font-size: 15px;
  max-width: 560px;
}
.section-sub.center { margin: 0 auto; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 32px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-wrap img { height: 48px; width: auto; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-text span { color: var(--blue); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-login:hover { border-color: var(--navy); color: var(--navy); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: white; font-size: 20px; }
.footer-brand .logo-text span { color: var(--blue-light); }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--blue); color: white; }
.footer-col h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--blue-light); margin-top: 3px; min-width: 16px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--blue-light); }

/* ---- PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.page-banner h1 { font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 15px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 13px; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 13px; }
.breadcrumb .current { color: var(--blue-light); font-size: 13px; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ---- HOME: HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a8a 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 65%);
  top: -200px; right: -200px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  bottom: -100px; left: 100px;
  border-radius: 50%;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-light);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.hero-badge i { font-size: 10px; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-light), #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 44px; }
.hero-stat { }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: white; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px;
  background: linear-gradient(145deg, #1e3a8a, #1a2744);
  border-radius: 30px;
  padding: 30px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.phone-screen { background: var(--offwhite); border-radius: 20px; padding: 20px; }
.phone-app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.phone-app-header span { font-size: 13px; font-weight: 700; color: var(--navy); }
.phone-balance { background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.phone-balance p { font-size: 11px; color: rgba(255,255,255,0.7); }
.phone-balance strong { display: block; font-size: 22px; color: white; font-weight: 700; margin-top: 4px; }
.phone-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phone-service {
  background: white;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.phone-service i { display: block; font-size: 18px; color: var(--blue); margin-bottom: 4px; }
.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
}
.floating-badge.success { top: 40px; right: -40px; }
.floating-badge.info { bottom: 60px; left: -40px; }
.floating-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #10B981; }
.dot-blue { background: var(--blue); }

/* ---- SERVICES SECTION ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card { text-align: center; padding: 36px 24px; }
.service-icon {
  width: 72px; height: 72px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--blue);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  transform: scale(1.08);
}
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-600); }

/* ---- HOW IT WORKS ---- */
.steps-section { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step-card { text-align: center; padding: 28px 20px; position: relative; }
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-200); font-size: 20px;
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  font-size: 18px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--gray-600); }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.why-feature { display: flex; align-items: flex-start; gap: 14px; }
.why-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px;
}
.why-feature h5 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: var(--gray-600); }
.why-image-wrap { position: relative; }
.why-image-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-image-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.why-big-num { font-size: 4rem; font-weight: 800; color: var(--blue-light); opacity: 0.9; }
.why-big-label { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.why-list-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.why-list-item i { color: var(--blue-light); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 550px; margin: 0 auto 32px; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-block {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
  text-align: center;
}
.about-big-icon { font-size: 64px; margin-bottom: 16px; }
.about-image-block h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.about-image-block p { color: rgba(255,255,255,0.7); font-size: 14px; }
.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--blue-light); }
.about-stat span { font-size: 12px; color: rgba(255,255,255,0.6); }
.about-content { }
.value-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 40px; height: 40px; min-width: 40px; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; }
.value-item h5 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.value-item p { font-size: 13px; color: var(--gray-600); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; padding: 32px 24px; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 14px; }
.team-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); }
.team-card span { font-size: 13px; color: var(--gray-600); }

/* ---- BLOG PAGE ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { overflow: hidden; padding: 0; }
.blog-thumb { background: linear-gradient(135deg, var(--navy-light), var(--blue)); padding: 28px; text-align: center; font-size: 40px; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-600); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }
.blog-tag { display: inline-block; background: var(--blue-pale); color: var(--blue); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
.contact-info-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.contact-form-card { }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--offwhite);
  transition: all 0.3s;
  outline: none;
}
.form-control:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- AUTH PAGES ---- */
.auth-section { min-height: calc(100vh - 70px); display: flex; align-items: center; padding: 60px 0; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.auth-side {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  padding: 50px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.auth-side h2 { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 12px; }
.auth-side p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.auth-features { display: flex; flex-direction: column; gap: 14px; }
.auth-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.auth-feature i { color: var(--blue-light); width: 20px; }
.auth-form-side { background: white; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.auth-form-side h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.auth-form-side .sub { font-size: 14px; color: var(--gray-600); margin-bottom: 30px; }
.auth-switch { margin-top: 22px; text-align: center; font-size: 14px; color: var(--gray-600); }
.auth-switch a { color: var(--blue); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before,.divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.divider span { font-size: 12px; color: var(--gray-600); }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 44px; }
.input-icon-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-600); font-size: 16px; }

/* ---- ALERT ---- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid .step-card::after { display: none; }
}
@media (max-width: 768px) {
  .nav-menu, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .header-actions.open { display: flex; padding: 0 20px 20px; position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; z-index: 999; }
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .services-grid,.why-grid,.about-grid,.contact-grid,.team-grid,.blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .auth-grid { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; padding: 60px 0; }
  .steps-grid,.footer-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}
