/* ========================================
   SIZEG AFRICA — Modern Corporate Site
   ======================================== */

:root {
  --bg: #fafafa;
  --bg-white: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --orange: #ff6b00;
  --orange-light: #fff7ed;
  --orange-dark: #ea580c;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --green: #22c55e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
}

.tag-blue {
  color: var(--blue);
}

.section-header h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 60px;
  font-size: 1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.25);
}

.btn-ghost {
  background: var(--bg-white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.nav-logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.92em;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: var(--border-light);
}

.nav-cta {
  background: var(--text) !important;
  color: #fff !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: grayscale(60%);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

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

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero h1 {
  font-size: clamp(2.8em, 6vw, 4.5em);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.2em;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.stat-suffix {
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--orange);
}

.stat-label {
  font-size: 0.88em;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.trust-label {
  text-align: center;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.trust-item:hover {
  opacity: 1;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card-large {
  grid-column: span 2;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-telecom {
  background: var(--orange-light);
  color: var(--orange);
}

.service-icon-security {
  background: #fef2f2;
  color: #ef4444;
}

.service-icon-immo {
  background: var(--blue-light);
  color: var(--blue);
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 1em;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  display: grid;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  font-weight: 500;
  color: var(--text);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card-large .service-features {
  grid-template-columns: 1fr 1fr;
}

/* ========================================
   MOTOROLA
   ======================================== */
.motorola-section {
  background: var(--bg);
}

.motorola-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.motorola-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.motorola-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.motorola-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.motorola-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 700;
}

.motorola-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.motorola-content > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 32px;
}

.motorola-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.moto-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moto-feat-icon {
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.moto-feature strong {
  display: block;
  font-size: 0.95em;
  font-weight: 700;
}

.moto-feature span {
  font-size: 0.88em;
  color: var(--text-muted);
}

/* ========================================
   GIMMO
   ======================================== */
.gimmo-section {
  background: var(--bg-white);
  overflow: hidden;
}

.gimmo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gimmo-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.gimmo-content > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 36px;
}

.gimmo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.gimmo-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gimmo-feat-num {
  font-size: 0.82em;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gimmo-feat strong {
  display: block;
  font-size: 0.95em;
  font-weight: 700;
  margin-bottom: 4px;
}

.gimmo-feat span {
  font-size: 0.9em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Gimmo Visual */
.gimmo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.gimmo-phone-frame {
  width: 300px;
  height: 580px;
  background: var(--text);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.gimmo-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.gimmo-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.88em;
  font-weight: 600;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.gimmo-float-1 {
  top: 20%;
  right: 0;
  animation-delay: 0s;
}

.gimmo-float-2 {
  bottom: 20%;
  left: 0;
  animation-delay: 1.5s;
}

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

/* ========================================
   ABOUT
   ======================================== */
.about-section {
  background: var(--bg);
}

.about-image {
  margin-bottom: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}

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

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}

.value-card h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92em;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.contact-info h2 {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-item strong {
  display: block;
  font-size: 0.88em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  display: block;
  font-size: 0.95em;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--orange);
}

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88em;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95em;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.08);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text);
  color: #fff;
  padding: 80px 0 0;
}

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

.footer-logo {
  height: 100px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92em;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.88em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  font-size: 0.95em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* ---- Clients / Références Section ---- */
.clients-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.client-card-h {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  min-width: 320px;
}

.client-card-h:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-logo-box {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px;
  background: var(--bg-white);
}

.client-logo-box img {
  max-width: 118px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}

.client-card-h:hover .client-logo-box img {
  filter: grayscale(0%) opacity(1);
}

.client-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 24px;
  border-left: 1px solid var(--border-light);
}

.client-tag {
  font-size: 0.68em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
}

.client-info-box strong {
  font-size: 1em;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.client-url {
  font-size: 0.78em;
  color: var(--text-muted);
}

/* ---- end Clients Section ---- */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-large {
    grid-column: span 1;
  }
  .service-card-large .service-features {
    grid-template-columns: 1fr;
  }
  .motorola-grid,
  .gimmo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .motorola-image img {
    height: 350px;
  }
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }
  .section-header h2 { font-size: 2em; }

  /* Navbar mobile */
  .nav-container {
    height: 80px;
  }

  .nav-logo img {
    height: 65px;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1em;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hero mobile */
  .hero { padding-top: 80px; }
  .hero-content { padding: 40px 24px; }
  .hero-subtitle { font-size: 1.05em; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 28px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .stat {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }

  /* Trust */
  .trust-logos { gap: 24px; }

  /* Gimmo visual */
  .gimmo-visual {
    min-height: 400px;
  }
  .gimmo-phone-frame {
    width: 240px;
    height: 460px;
  }
  .gimmo-float-card {
    font-size: 0.78em;
    padding: 10px 14px;
  }

  /* About */
  .about-values {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2em; }
  .motorola-content h2,
  .gimmo-content h2,
  .contact-info h2 {
    font-size: 2em;
  }
}
