/* =============================================
   TOR DELIVERY — Main Stylesheet
   Brand: Orange #E84B1A | Blue #1A5CB5
============================================= */

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

:root {
  --orange: #E84B1A;
  --orange-dark: #c43a12;
  --orange-light: #fff0eb;
  --blue: #1A5CB5;
  --blue-dark: #144a93;
  --blue-light: #e8f0fb;
  --dark: #0f1217;
  --dark-2: #1e2433;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f8f9fb;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,75,26,.35); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gray); background: var(--bg); }
.btn-white { background: #fff; color: var(--dark); border-color: rgba(255,255,255,.3); }
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.section-header p { color: var(--gray); font-size: 17px; max-width: 520px; margin: 0 auto; }

.section-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: var(--orange-light); color: var(--orange);
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.section-tag.light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

/* ---- NAV ---- */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav-wrapper.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; height: 72px; gap: 40px; }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }
.logo-text { font-size: 18px; font-weight: 800; color: var(--blue); letter-spacing: -.02em; }
.nav-links { display: flex; list-style: none; gap: 4px; margin-left: auto; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: all .15s; }
.nav-links a:hover { background: var(--bg); color: var(--orange); }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .2s; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 14px 16px; font-size: 16px; font-weight: 500; color: var(--dark); text-decoration: none; border-radius: 8px; }
.mobile-menu a:hover { background: var(--bg); }
.mobile-menu .btn { margin-top: 16px; text-align: center; }

/* ---- HERO ---- */
.hero {
  position: relative; padding: 160px 0 0; overflow: hidden;
  background: linear-gradient(135deg, #0f1217 0%, #1e2433 60%, #0f1217 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: .06; }
.shape-1 { width: 600px; height: 600px; background: var(--orange); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--blue); bottom: 0; left: -150px; }
.shape-3 { width: 200px; height: 200px; background: var(--orange); top: 40%; left: 30%; }

.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,75,26,.15); color: var(--orange); padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(232,75,26,.3); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-headline { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.1; color: #fff; letter-spacing: -.03em; margin-bottom: 20px; }
.highlight { color: var(--orange); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.65); max-width: 460px; margin-bottom: 36px; line-height: 1.7; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-ghost { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Hero visual */
.hero-visual { position: relative; height: 420px; }
.hero-card { position: absolute; background: rgba(255,255,255,.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 20px; }
.hero-card-main { top: 0; left: 0; right: 0; display: flex; align-items: center; gap: 16px; }
.hero-card-main .card-icon { width: 56px; height: 56px; flex-shrink: 0; }
.card-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.card-value { font-size: 17px; font-weight: 700; color: #fff; margin: 2px 0; }
.card-status { font-size: 13px; color: rgba(232,75,26,.9); }
.hero-card-secondary { bottom: 110px; right: 0; display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px; padding: 14px 20px; }
.check-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-rating { bottom: 0; left: 0; width: 55%; }
.stars { color: #fbbf24; font-size: 15px; margin-bottom: 6px; }
.hero-card-rating p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 6px; }
.reviewer { font-size: 12px; color: rgba(255,255,255,.45); }

.hero-wave { margin-top: 80px; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ---- TRUSTED ---- */
.trusted { background: var(--bg); padding: 40px 0; border-bottom: 1px solid var(--border); }
.trusted-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trusted-logo { font-size: 16px; font-weight: 800; color: var(--dark); letter-spacing: -.02em; padding: 8px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; }

/* ---- SERVICES ---- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all .2s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card.featured { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-color: transparent; color: #fff; }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-link { color: rgba(255,255,255,.9); }

.featured-badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; }

.service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon.orange { background: var(--orange-light); color: var(--orange); }
.service-icon.blue { background: var(--blue-light); color: var(--blue); }
.service-icon.white { background: rgba(255,255,255,.15); color: #fff; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; }
.service-link:hover { text-decoration: underline; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--bg); }
.steps { display: flex; align-items: flex-start; gap: 16px; }
.step { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.step-number { font-size: 40px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.step-arrow { color: var(--gray-light); font-size: 24px; margin-top: 48px; flex-shrink: 0; }

/* ---- WHY US ---- */
.why-us { background: var(--white); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-us-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.why-us-text > p { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.why-us-text .section-tag { margin-bottom: 0; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-icon svg { width: 18px; height: 18px; }
.why-list strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-list p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

/* Metrics card */
.metrics-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.metrics-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: 20px; }
.metric-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; margin-bottom: 14px; }
.metric-label { font-size: 14px; font-weight: 500; }
.metric-bar { width: 120px; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.metric-fill { height: 100%; background: var(--orange); border-radius: 3px; transition: width 1s ease; }
.metric-fill.blue { background: var(--blue); }
.metric-val { font-size: 14px; font-weight: 700; width: 42px; text-align: right; }

.review-card { background: var(--dark-2); border-radius: var(--radius-lg); padding: 28px; }
.review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 12px; }
.review-card p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.reviewer-info strong { display: block; color: #fff; font-size: 14px; }
.reviewer-info span { font-size: 12px; color: rgba(255,255,255,.5); }

/* ---- INVESTORS ---- */
.investors {
  background: linear-gradient(135deg, #0f1217 0%, #1a2540 60%, #0f1217 100%);
  color: #fff; position: relative; overflow: hidden;
}
.investors::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.investors-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.investors-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.investors-text > p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.investor-highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.investor-highlights li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.85); }
.highlight-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.investor-contact-label { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 12px; }

.investors-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inv-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: background .2s; }
.inv-stat:hover { background: rgba(255,255,255,.1); }
.inv-num { display: block; font-size: 40px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.inv-label { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }

/* ---- CONTACT ---- */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: var(--font); color: var(--dark);
  background: var(--white); outline: none; transition: border-color .15s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,75,26,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-note { text-align: center; font-size: 12px; color: var(--gray-light); margin-top: 12px; }

.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px; }
.contact-info-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.contact-details li { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; }
.contact-details strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-details a { font-size: 14px; color: var(--blue); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.contact-availability { display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; flex-shrink: 0; }
.contact-availability span { font-size: 13px; color: var(--gray); }

.contact-guarantee { background: var(--orange-light); border: 1px solid rgba(232,75,26,.2); border-radius: var(--radius-lg); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.guarantee-icon { width: 40px; height: 40px; flex-shrink: 0; }
.guarantee-icon svg { width: 40px; height: 40px; }
.contact-guarantee strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-guarantee p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }

/* ---- COVERAGE ---- */
.coverage { background: var(--white); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.coverage-text > p { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.coverage-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.coverage-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.cov-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cov-icon svg { width: 16px; height: 16px; }
.hours-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--gray); }

.coverage-map { display: flex; align-items: center; justify-content: center; }
.map-placeholder { background: linear-gradient(135deg, var(--bg) 0%, #edf0f7 100%); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; width: 100%; }
.map-pin { margin-bottom: 12px; }
.map-city { font-size: 28px; font-weight: 900; color: var(--dark); }
.map-state { font-size: 16px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.map-address { font-size: 14px; color: var(--gray); }

/* ---- E-COMMERCE ---- */
.ecommerce { background: var(--bg); }
.ecom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ecom-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.ecom-text > p { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.ecom-features { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ecom-features li { display: flex; gap: 14px; align-items: flex-start; }
.ecom-feature-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ecom-feature-icon svg { width: 14px; height: 14px; }
.ecom-features strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.ecom-features p { font-size: 14px; color: var(--gray); margin: 0; line-height: 1.6; }

.ecom-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.ecom-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.ecom-num { display: block; font-size: 20px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.ecom-label { font-size: 12px; color: var(--gray); line-height: 1.4; }
.ecom-testimonial { background: var(--dark-2); border-radius: var(--radius-lg); padding: 24px; }
.ecom-testimonial p { color: rgba(255,255,255,.8); font-size: 14px; font-style: italic; line-height: 1.7; margin-bottom: 14px; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-card.featured-t { background: var(--dark-2); border-color: transparent; }
.testimonial-card.featured-t p { color: rgba(255,255,255,.8); }
.t-stars { color: #fbbf24; font-size: 15px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--gray); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.t-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-card.featured-t .t-author strong { color: #fff; }
.t-author span { font-size: 12px; color: var(--gray-light); }

/* ---- CONTACT OVERRIDES (updated) ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-cta-card { background: var(--orange); border-radius: var(--radius-lg); padding: 40px; color: #fff; }
.contact-cta-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.contact-cta-card p { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 28px; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand .logo-text { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 260px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .15s; }
.social-link:hover { color: #fff; transform: translateY(-2px); }
.social-link[aria-label="WhatsApp"]:hover { background: #25D366; }
.social-link[aria-label="Instagram"]:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link[aria-label="Facebook"]:hover { background: #1877F2; }
.social-link[aria-label="X (Twitter)"]:hover { background: #000; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ---- SUCCESS STATE ---- */
.form-success { text-align: center; padding: 48px 24px; }
.form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: 15px; }

/* ---- WHATSAPP WIDGET ---- */
.wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.wa-fab {
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); color: #fff; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-fab-icon { display: flex; align-items: center; justify-content: center; }
.wa-notification-dot {
  position: absolute; top: 4px; right: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--orange); border: 2px solid #fff;
  animation: pulse 2s infinite;
}

/* Popup */
.wa-popup {
  width: 300px; background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18); overflow: hidden;
  transform: scale(0.85) translateY(16px); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .2s ease;
}
.wa-popup.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.wa-popup-header {
  background: #075E54; padding: 16px; display: flex; align-items: center; gap: 12px;
}
.wa-popup-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.wa-popup-info { flex: 1; }
.wa-popup-name { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.2; }
.wa-popup-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.75); margin-top: 3px; }
.wa-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; flex-shrink: 0; animation: pulse 2s infinite; }
.wa-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); padding: 4px; border-radius: 4px; display: flex; }
.wa-close:hover { color: #fff; }

.wa-popup-body { background: #e5ddd5; padding: 20px 16px; }
.wa-bubble {
  background: #fff; border-radius: 0 10px 10px 10px; padding: 12px 14px;
  max-width: 88%; box-shadow: 0 1px 2px rgba(0,0,0,.12);
  position: relative;
}
.wa-bubble::before {
  content: ''; position: absolute; top: 0; left: -8px;
  border: 8px solid transparent; border-top-color: #fff; border-left: 0;
}
.wa-bubble p { font-size: 14px; color: #303030; line-height: 1.55; margin-bottom: 4px; }
.wa-bubble p:last-of-type { margin-bottom: 6px; }
.wa-time { font-size: 11px; color: #999; display: block; text-align: right; }

.wa-start-chat {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 14px; font-size: 15px; font-weight: 700;
  transition: background .15s;
}
.wa-start-chat:hover { background: #1ebe5a; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-info .contact-guarantee { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 140px 0 0; }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .investors-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .ecom-inner { grid-template-columns: 1fr; gap: 40px; }
  .ecom-visual { order: 2; }
  .ecom-text { order: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-info .contact-guarantee { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .investors-stats-grid { grid-template-columns: 1fr 1fr; }
  .metric-bar { width: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 32px; }
  .investors-stats-grid { grid-template-columns: 1fr 1fr; }
}
