/* PC Tailor — v2 Site Styles */
/* Fonts: DM Sans (body) + Outfit (headings) */

:root {
  --blue-900: #1a365d;
  --blue-800: #1e4d8c;
  --blue-700: #2563eb;
  --blue-600: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --green-600: #16a34a;
  --green-50: #f0fdf4;
  --red-50: #fef2f2;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--slate-700);
  line-height: 1.7;
  font-size: 17px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--slate-900);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.35rem; }

a { color: var(--blue-700); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-800); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 40px; height: 40px; background: var(--blue-700); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: -0.5px;
}
.nav-brand-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--slate-900); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { padding: 8px 16px; color: var(--slate-700); font-weight: 500; font-size: 0.95rem; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { background: var(--blue-50); color: var(--blue-700); }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--blue-700); color: white !important;
  padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: background 0.2s;
}
.nav-phone:hover { background: var(--blue-800); color: white !important; }
.nav-phone svg { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate-900); margin: 6px 0; transition: all 0.3s; }
.nav-phone-mobile { display: none; }

/* ─── HERO ─── */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 40%, #f8faff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%); border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); color: var(--green-600);
  padding: 6px 16px; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(22,163,74,0.15);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--green-600);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--blue-700); }
.hero-content > p { font-size: 1.15rem; color: var(--slate-500); margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; background: var(--blue-700); color: white !important;
  border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.5rem; letter-spacing: 1px;
  transition: all 0.25s; box-shadow: var(--shadow-md); text-decoration: none;
}
.hero-phone:hover { background: var(--blue-800); color: white !important; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-phone svg { width: 28px; height: 28px; max-width: 28px; max-height: 28px; display: block; flex-shrink: 0; }
.hero-sub { font-size: 0.9rem; color: var(--slate-500); }
.hero-illustration { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; max-width: 420px; width: 100%; }
.hero-illustration svg { width: 100%; max-width: 420px; height: auto; display: block; }

/* ─── TRUST BAR ─── */
.trust-bar { padding: 32px 0; border-bottom: 1px solid var(--slate-100); background: var(--white); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--slate-500); font-weight: 500; }
.trust-icon {
  width: 40px; height: 40px; background: var(--blue-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--blue-700); flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--slate-100); }
.section-blue { background: var(--blue-900); color: rgba(255,255,255,0.85); }
.section-blue h2, .section-blue h3 { color: white; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header p { color: var(--slate-500); margin-top: 12px; font-size: 1.05rem; }

/* ─── CARDS ─── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--slate-100); transition: all 0.3s; position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-illustration {
  width: 100%; height: 140px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--blue-50); border-radius: 8px;
}
.card-illustration svg { width: 120px; height: 120px; display: block; max-width: 120px; }
.card-icon {
  width: 48px; height: 48px; background: var(--blue-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-700);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: 0.95rem; }
.card-price {
  display: inline-block; margin-top: 16px; padding: 6px 14px;
  background: var(--blue-50); color: var(--blue-700); border-radius: 6px; font-weight: 700; font-size: 0.9rem;
}

/* ─── WHY CARDS ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--slate-100); text-align: center; transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: var(--blue-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 36px; height: 36px; max-width: 36px; max-height: 36px; display: block; color: var(--blue-700); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--slate-500); font-size: 0.95rem; }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; position: relative; padding-top: 20px; }
.step-number {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
  margin: 0 auto 20px; box-sizing: border-box;
  background: var(--blue-700); color: white; border-radius: 50%;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
  line-height: 1; flex-shrink: 0;
}
.step-illustration { width: 80px; height: 80px; max-width: 80px; max-height: 80px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.step-illustration svg { width: 64px; height: 64px; max-width: 64px; max-height: 64px; display: block; flex-shrink: 0; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: 0.9rem; max-width: 280px; margin: 0 auto; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, #1e3a5f 50%, var(--blue-800) 100%);
  color: white; position: relative; overflow: hidden; padding: 80px 0;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%); border-radius: 50%;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { max-width: 500px; margin: 0 auto 32px; opacity: 0.8; font-size: 1.1rem; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px; background: white; color: var(--blue-700) !important;
  border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.4rem; transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15); text-decoration: none;
}
.cta-phone:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--blue-800) !important; }
.cta-phone svg { width: 24px; height: 24px; max-width: 24px; max-height: 24px; display: block; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--blue-50); border-radius: 16px; padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-size: 4rem; color: var(--blue-700); opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { font-size: 1rem; font-style: italic; color: var(--slate-700); line-height: 1.8; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-author { font-weight: 700; color: var(--slate-900); font-style: normal; font-size: 0.9rem; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 48px 0 40px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%); border-radius: 50%;
}
.page-header h1 { position: relative; z-index: 1; }
.page-header p { color: var(--slate-500); margin-top: 8px; font-size: 1.05rem; position: relative; z-index: 1; }

/* ─── PAGE ILLUSTRATION ─── */
.page-illustration { display: flex; justify-content: center; margin-bottom: 48px; }
.page-illustration svg { width: 200px; height: 160px; max-width: 200px; display: block; }

/* ─── TWO COL ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ─── FEATURES LIST ─── */
.features-list { list-style: none; padding: 0; }
.features-list li { padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem; }
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-700); font-weight: 700; }

/* ─── PRICING ─── */
.pricing-bar { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }
.pricing-item {
  background: var(--white); border-radius: var(--radius); padding: 24px 32px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--slate-100); min-width: 200px;
}
.pricing-item .price { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-700); }
.pricing-item .label { font-size: 0.85rem; color: var(--slate-500); margin-top: 4px; }

/* ─── HELP CARDS ─── */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.help-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--slate-100); transition: all 0.25s;
}
.help-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.help-card-icon {
  width: 64px; height: 64px; background: var(--blue-50); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--blue-700);
}
.help-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.help-card p { color: var(--slate-500); font-size: 0.9rem; margin-bottom: 16px; }
.help-card .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}

/* ─── BUTTONS ─── */
.btn-primary { background: var(--blue-700); color: white !important; }
.btn-primary:hover { background: var(--blue-800); }
.btn-outline { border: 2px solid var(--blue-700); color: var(--blue-700) !important; background: transparent; }
.btn-outline:hover { background: var(--blue-700); color: white !important; }

/* ─── ABOUT VALUES ─── */
.about-story { max-width: 720px; font-size: 1.05rem; line-height: 1.85; }
.about-story p { margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.value-item { padding: 24px; background: var(--blue-50); border-radius: var(--radius); }
.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; color: var(--slate-500); }

/* ─── CONTACT ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--slate-900); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--slate-300); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
button[type="submit"] {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--blue-700); color: white; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s;
}
button[type="submit"]:hover { background: var(--blue-800); transform: translateY(-1px); }
.contact-info-box { background: var(--slate-100); border-radius: var(--radius); padding: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px; min-width: 40px; background: var(--blue-700); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0;
}
.contact-info-icon[style*="background"] { background: unset; }
.contact-info-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.9rem; color: var(--slate-500); }

/* ─── TERMS ─── */
.terms-content h3 { margin-top: 32px; margin-bottom: 8px; font-size: 1.1rem; }
.terms-content p { margin-bottom: 16px; }

/* ─── FOOTER ─── */
.footer { background: var(--slate-900); color: rgba(255,255,255,0.6); padding: 48px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer h4 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: white; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem;
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ─── FADE IN ─── */
/* Animations only active when JS adds .js-loaded to <html> */
html.js-loaded .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js-loaded .fade-in.visible { opacity: 1; transform: translateY(0); }
html.js-loaded .fade-in-delay-1 { transition-delay: 0.1s; }
html.js-loaded .fade-in-delay-2 { transition-delay: 0.2s; }
html.js-loaded .fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px 24px;
    border-bottom: 1px solid var(--slate-100); box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-phone-mobile { display: flex !important; margin-top: 8px; justify-content: center; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-illustration { order: 0; margin-bottom: 16px; max-width: 280px; }
  .hero-illustration svg { max-width: 280px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-cta { justify-content: center; }
  .hero-sub { text-align: center; }
  .hero-phone { padding: 16px 28px; font-size: 1.2rem; width: 100%; justify-content: center; }
  .hero-phone svg { width: 22px; height: 22px; max-width: 22px; max-height: 22px; }
  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 24px; }
  .pricing-bar { flex-direction: column; align-items: center; }
  .pricing-item { width: 100%; }
  .page-header { padding: 32px 0; }
  .page-header h1 { font-size: 1.5rem; }
  .help-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }

  /* Hero - stack to single column */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero p { font-size: 1rem; }
  
  /* Contact - stack form and info */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  
  /* Steps - inline layout with number badge left-aligned */
  .step-illustration { display: none; }
  .step-content { flex: 1; }
  .step-number { flex-shrink: 0; width: 36px; height: 36px; min-width: 36px; min-height: 36px; font-size: 0.95rem; margin: 3px 0 0 0; }
  .step h3 { font-size: 1rem; margin-bottom: 4px; }
  .step p { font-size: 0.88rem; margin: 0; }
  
  /* Nav */
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-phone { padding: 14px 20px !important; font-size: 1.1rem !important; }
  h2 { font-size: 1.3rem; }
  .card { padding: 24px; }
  .cta-phone { padding: 16px 28px; font-size: 1.1rem; }
  .help-card { padding: 24px 20px; }
  .contact-info-box { padding: 24px; }
}

/* ── Contact Method Blocks ─────────────────────────── */
.contact-method {
  display: -webkit-flex; display: flex;
  align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-method:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  border-radius: 10px; display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  flex-shrink: 0; box-sizing: border-box;
}
.contact-icon svg { display: block; flex-shrink: 0; }
.contact-method h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.contact-method p { font-size: 0.9rem; color: var(--slate-500); margin: 2px 0; }

/* ── WhatsApp Floating Button ────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); color: white; }
.wa-float svg { width: 24px; height: 24px; max-width: 24px; max-height: 24px; display: block; flex-shrink: 0; }
.wa-float .wa-label { display: inline; }

/* ── WhatsApp on Contact Page ───────────────────────── */
.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 8px;
  margin-top: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-contact-btn:hover { background: #1ebe5d; transform: translateY(-2px); color: white; }
.wa-contact-btn svg { width: 22px; height: 22px; max-width: 22px; max-height: 22px; display: block; flex-shrink: 0; }

@media (max-width: 768px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ---- MOBILE FIXES (added) ---- */

/* Success banner */
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 { color: #065f46; font-size: 1.1rem; margin-bottom: 6px; }
.form-success p { color: #047857; font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
  /* Fix absolutely-positioned step numbers on mobile */
  .step { padding-top: 0; display: flex; flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; }
  .step-number { position: static; transform: none; flex-shrink: 0; margin: 0; }
  .step-content { flex: 1; }
  .step h3 { font-size: 1rem; margin-bottom: 4px; }
  .step p { margin: 0; font-size: 0.9rem; }
  .step-illustration { display: none; }

  /* Hero section */
  .hero { padding: 36px 0 28px; }
  .hero-grid { gap: 20px; }

  /* Section spacing */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }

  /* Nav phone mobile */
  .nav-phone-mobile a { font-size: 0.9rem; }

  /* Trust bar */
  .trust-bar { padding: 20px 0; }
  .trust-items { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .trust-item { min-width: 140px; }

  /* Pricing */
  .pricing-bar { gap: 12px; }

  /* Contact form */
  .contact-grid { gap: 32px; }
  .contact-info-item { gap: 12px; }
}

@media (max-width: 480px) {
  /* Steps: tighter on small screens */
  .steps-grid { gap: 16px; }
  .step-number { width: 32px !important; height: 32px !important; font-size: 1rem !important; }

  /* Page header */
  .page-header { padding: 24px 0; }
  .page-header h1 { font-size: 1.35rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
