/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg-primary: #1a1d23;
  --bg-secondary: #22262e;
  --bg-card: #2a2f38;
  --bg-card-hover: #323842;
  --bg-input: #1e2128;
  --accent: #e8732a;
  --accent-hover: #f5883f;
  --accent-soft: rgba(232, 115, 42, 0.12);
  --accent-glow: rgba(232, 115, 42, 0.25);
  --text-primary: #f0f2f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: #353a44;
  --border-light: #3f4554;
  --success: #34d399;
  --warning: #fbbf24;
  --info: #60a5fa;
  --error: #f87171;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
   max-width: 1200px;
   ═══════════════════════════════════════════ */
.container { margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 1px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary); max-width: 600px; line-height: 1.7;
}
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 29, 35, .85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--text-primary);
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 8px 20px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-hamburger {
  display: none; background: none; border: none; color: var(--text-primary);
  font-size: 24px; cursor: pointer;
}

.nav-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, var(--accent-soft) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(96,165,250,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(var(--text-muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-muted) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid rgba(232,115,42,.2);
  padding: 6px 16px; border-radius: 100px; font-size: 13px;
  font-weight: 600; color: var(--accent); margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: .4; }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800;
  line-height: 1.08; margin-bottom: 20px; max-width: 700px;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 18px; color: var(--text-secondary); max-width: 540px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all var(--transition); font-family: var(--font);
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 28px var(--accent-glow); }
.btn-secondary {
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--border-light); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-value { font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════
   SERVICES STRIP
   ═══════════════════════════════════════════ */
.services-strip {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--accent-soft); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.service-tag {
  display: inline-block; margin-top: 16px; padding: 4px 12px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 100px; font-size: 12px; font-weight: 600;
}

/* ═══════════════════════════════════════════
   COTIZADOR
   ═══════════════════════════════════════════ */


/*Loader option*/

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 25, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(4px);
}

.loader-box {
  background: #1e2430;
  padding: 28px 36px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.loader-box p {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.loader-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255,255,255,0.12);
  border-top: 4px solid #f97316;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

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

.message-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,.82);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(4px);
}

.message-box {
  width: 360px;
  background: #1f2633;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  animation: popup .25s ease;
}

.message-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 18px;
}

.message-success .message-icon {
  background: rgba(34,197,94,.15);
  color: #22c55e;
}

.message-error .message-icon {
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

#messageTitle {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
}

#messageText {
  color: #aeb7c6;
  margin-bottom: 24px;
  line-height: 1.5;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.catalog-loader {
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  margin: 14px 0 22px;
}

.loader-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

.form-select:disabled {
  opacity: .65;
  cursor: not-allowed;
}
/*tablas de piezas, etc*/

.quote-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.quote-items-table {
  width: 80%;
  border-collapse: collapse;
  min-width: 900px;
}

.quote-items-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 12px;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.quote-items-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border);
}

.quote-items-table .form-input,
.quote-items-table .form-select {
  padding: 10px;
  font-size: 13px;
  min-width: 80px;
}

/* Estilos del botón de archivo */
.custom-file-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-file-btn {
  background-color: #ff9500;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.custom-file-btn:hover {
  background-color: #e68900;
}

.custom-file-name {
  font-size: 0.875rem;
  color: #ccc;
}

.quoter { background: var(--bg-primary); position: relative; }
.quoter::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.quoter-wrapper {
  display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start;
}
.quoter-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-section-title {
  font-size: 14px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.form-section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Right column: client panel + result stacked */
.quoter-right {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 88px;
}
.client-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.client-panel .form-section-title { margin-bottom: 20px; }
.client-grid {
  display: flex; flex-direction: column; gap: 16px;
}
.form-compact {
  display: flex; flex-direction: column; gap: 16px;
}
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: .5px;
}
.form-input, .form-select {
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 15px; color: var(--text-primary); font-family: var(--font);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-input.error { border-color: var(--error); }
.form-input.success { border-color: var(--success); }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-muted); }
.form-hint.error-msg { color: var(--error); }
.form-hint.success-msg { color: var(--success); }
.form-divider {
  grid-column: 1 / -1; height: 1px; background: var(--border); margin: 8px 0;
}
.btn-quote {
  margin-top: 8px; justify-content: center;
  width: 100%; padding: 16px;
}

/* Phone input with country code */
.phone-wrapper {
  display: flex; gap: 8px;
}
.phone-code {
  width: 120px; flex-shrink: 0;
}
.phone-number { flex: 1; }

/* Cedula lookup */
.cedula-wrapper {
  position: relative;
}
.cedula-wrapper .form-input { padding-right: 44px; }
.cedula-spinner {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .6s linear infinite; display: none;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.cedula-wrapper.loading .cedula-spinner { display: block; }

/* Checkbox group */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.checkbox-label {
  display: flex; align-items: center; gap: 6px; font-size: 14px;
  color: var(--text-secondary); cursor: pointer; padding: 6px 12px;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.checkbox-label:hover { border-color: var(--accent); }
.checkbox-label input[type="checkbox"] { accent-color: var(--accent); }

/* Quote Result Panel */
.quote-result {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.quote-result-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.quote-result-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-soft); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.quote-result h3 { font-size: 18px; font-weight: 700; }
.quote-result-subtitle { font-size: 13px; color: var(--text-muted); }
.quote-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(53,58,68,.5);
}
.quote-line-label { font-size: 14px; color: var(--text-secondary); }
.quote-line-value { font-size: 14px; font-weight: 600; }
.quote-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 0; margin-top: 8px;
  border-top: 2px solid var(--accent);
}
.quote-total-label { font-size: 16px; font-weight: 700; }
.quote-total-value { font-size: 28px; font-weight: 800; color: var(--accent); }
.quote-total-period { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.quote-note {
  margin-top: 20px; padding: 14px; background: var(--accent-soft);
  border-radius: var(--radius-sm); font-size: 13px; color: var(--text-secondary);
  line-height: 1.5; display: flex; gap: 8px;
}
.quote-actions { margin-top: 20px; display: flex; gap: 12px; }
.quote-actions .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px; }
.quote-client-info {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-secondary); line-height: 1.7;
}
.quote-client-info strong { color: var(--text-primary); }
.quote-placeholder {
  text-align: center; padding: 40px 20px; color: var(--text-muted);
}
.quote-placeholder-icon { font-size: 48px; margin-bottom: 16px; opacity: .5; }
.quote-placeholder p { font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════
   TARIFF TABLE
   ═══════════════════════════════════════════ */
.tariff-section { background: var(--bg-secondary); }
.tariff-tabs {
  display: flex; gap: 4px; margin-bottom: 32px;
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 4px; width: fit-content;
}
.tariff-tab {
  padding: 10px 24px; border-radius: 6px; font-size: 14px;
  font-weight: 600; color: var(--text-secondary); cursor: pointer;
  border: none; background: none; font-family: var(--font);
  transition: all var(--transition);
}
.tariff-tab.active { background: var(--accent); color: #fff; }
.tariff-tab:hover:not(.active) { color: var(--text-primary); }
.tariff-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.tariff-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.tariff-table thead { background: var(--bg-secondary); }
.tariff-table th {
  padding: 14px 20px; text-align: left; font-weight: 600;
  color: var(--text-muted); font-size: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}
.tariff-table td { padding: 16px 20px; border-top: 1px solid var(--border); }
.tariff-table tr:hover td { background: rgba(232,115,42,.03); }
.tariff-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.tariff-badge-sea { background: rgba(96,165,250,.12); color: var(--info); }
.tariff-badge-air { background: rgba(251,191,36,.12); color: var(--warning); }
.tariff-badge-land { background: rgba(52,211,153,.12); color: var(--success); }
.tariff-note {
  padding: 16px 20px; background: var(--bg-secondary);
  border-top: 1px solid var(--border); font-size: 13px;
  color: var(--text-muted); display: flex; align-items: center; gap: 8px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps-section { background: var(--bg-primary); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 48px; }
.step-card { text-align: center; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--accent);
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════ */
.trust-section {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 48px 0;
}
.trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.trust-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section { background: var(--bg-primary); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-light); }
.faq-question {
  width: 100%; padding: 20px 24px; background: var(--bg-card);
  border: none; color: var(--text-primary); font-size: 15px;
  font-weight: 600; text-align: left; cursor: pointer;
  font-family: var(--font); display: flex; justify-content: space-between;
  align-items: center; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-chevron {
  font-size: 12px; transition: transform var(--transition); color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 14px;
  color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #c45a15 100%);
  text-align: center; padding: 80px 24px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: #fff; margin-bottom: 16px; position: relative;
}
.cta-section p {
  font-size: 17px; color: rgba(255,255,255,.85); max-width: 520px;
  margin: 0 auto 32px; position: relative;
}
.btn-white {
  background: #fff; color: var(--bg-primary); padding: 16px 36px;
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; font-family: var(--font);
  transition: all var(--transition); position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  padding: 24px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
.footer-col h4 {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(26,29,35,.95); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 600; color: var(--text-primary); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .quoter-wrapper { grid-template-columns: 1fr; }
  .quoter-right { position: static; }
  .quote-result { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 56px 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 24px; }
  .tariff-tabs { flex-wrap: wrap; }
  .phone-wrapper { flex-direction: column; }
  .phone-code { width: 100%; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; animation: fadeUp .6s var(--transition) forwards; }
.animate-in:nth-child(2) { animation-delay: .1s; }
.animate-in:nth-child(3) { animation-delay: .2s; }
.animate-in:nth-child(4) { animation-delay: .3s; }

/* ═══════════════════════════════════════════
   PRINT STYLES — Only the quote PDF
   ═══════════════════════════════════════════ */
@media print {
  /* Hide everything */
  body * { visibility: hidden; }

  /* Show only the print container */
  #printArea, #printArea * { visibility: visible; }
  #printArea {
    position: fixed; left: 0; top: 0; width: 100%;
    background: #fff; color: #1a1d23; padding: 40px;
    font-family: 'Inter', Arial, sans-serif;
  }

  /* Print header */
  .print-header {
    display: flex !important; justify-content: space-between;
    align-items: flex-start; margin-bottom: 32px;
    padding-bottom: 20px; border-bottom: 3px solid #e8732a;
  }
  .print-logo { font-size: 24px; font-weight: 800; color: #1a1d23; }
  .print-logo span { color: #e8732a; }
  .print-meta { text-align: right; font-size: 12px; color: #6b7280; }
  .print-meta strong { color: #1a1d23; display: block; font-size: 14px; }

  /* Print title */
  .print-title {
    display: block !important;
    font-size: 20px; font-weight: 700; color: #1a1d23;
    margin-bottom: 24px;
  }

  /* Client info in print */
  .print-client-box {
    display: grid !important; grid-template-columns: 1fr 1fr;
    gap: 8px 32px; margin-bottom: 24px;
    padding: 16px; background: #f9fafb; border-radius: 8px;
    border: 1px solid #e5e7eb;
  }
  .print-client-box div { font-size: 13px; color: #374151; }
  .print-client-box .pcl { font-weight: 600; color: #6b7280; font-size: 11px; text-transform: uppercase; }

  /* Quote lines */
  .print-lines { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
  .print-lines th {
    text-align: left; padding: 10px 16px; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #6b7280; border-bottom: 2px solid #e5e7eb;
  }
  .print-lines td {
    padding: 12px 16px; font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
  }
  .print-lines .total-row td {
    border-top: 2px solid #e8732a; font-weight: 700;
    font-size: 16px; padding-top: 16px;
  }
  .print-lines .total-row .total-amount { color: #e8732a; font-size: 22px; }

  /* Print note */
  .print-note {
    display: block !important;
    margin-top: 24px; padding: 12px 16px;
    background: #fff7ed; border-left: 3px solid #e8732a;
    font-size: 12px; color: #6b7280; line-height: 1.6;
  }

  /* Print footer */
  .print-footer {
    display: flex !important; justify-content: space-between;
    margin-top: 40px; padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 11px; color: #9ca3af;
  }

  /* Ensure no page breaks */
  #printArea { page-break-inside: avoid; }
}

/* Hide print area on screen */
#printArea { display: none; }
@media print { #printArea { display: block !important; } }
