/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a2236; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ========== VARIABLES ========== */
:root {
  --navy: #0d1f3c;
  --navy-light: #1b2f52;
  --red: #C8102E;
  --red-light: #e8192e;
  --teal: #00b386;
  --teal-light: #00d4a0;
  --gold: #c9a227;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,16,46,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-header p { color: var(--gray-500); font-size: 1rem; }
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.cn-title { display: block; font-size: 1.1rem; color: var(--red); font-weight: 600; margin-top: 4px; }
.cn-label { font-size: 0.7em; color: var(--gray-500); margin-left: 6px; }
.accent { color: var(--red); }

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,60,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { display: flex; }
.logo-text { display: flex; flex-direction: column; }
.logo-en { font-size: 1.15rem; font-weight: 700; color: white; line-height: 1.2; }
.logo-en strong { color: var(--red); }
.logo-cn { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }
.nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav a { padding: 8px 12px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; border-radius: 6px; transition: all 0.2s; }
.nav a:hover { color: white; background: rgba(255,255,255,0.1); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; background: var(--navy); position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,179,134,0.08) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3);
  color: #ff6b6b; font-size: 0.8rem; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 20px;
}
.hero-text h1 { font-size: 3.4rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.trust-icon { font-size: 1rem; }

/* ========== CONVERTER WIDGET ========== */
.widget-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative;
}
.widget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.widget-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.live-dot { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--teal); font-weight: 600; }
.live-dot span { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.conv-row { margin-bottom: 10px; }
.conv-row label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-500); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.conv-row label .cn { font-size: 0.85em; text-transform: none; letter-spacing: 0; }
.input-group { display: flex; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s; }
.input-group:focus-within { border-color: var(--red); }
.input-group input { flex: 1; padding: 12px 14px; font-size: 1.2rem; font-weight: 700; border: none; outline: none; color: var(--navy); min-width: 0; }
.input-group select { padding: 12px 14px; background: var(--gray-50); border: none; border-left: 2px solid var(--gray-200); outline: none; font-weight: 600; color: var(--navy); cursor: pointer; font-size: 0.9rem; }
.conv-arrow { display: flex; align-items: center; justify-content: space-between; margin: 8px 0; padding: 0 4px; }
.conv-arrow button { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: white; border: none; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; }
.conv-arrow button:hover { transform: rotate(180deg); background: var(--red-light); }
.rate-display { font-size: 0.82rem; color: var(--gray-500); font-weight: 600; }
.widget-note { font-size: 0.72rem; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* ========== RATES SECTION ========== */
.rates-section { padding: 90px 0; background: var(--gray-50); }
.rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.rate-card {
  background: white; border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: all 0.3s; position: relative;
}
.rate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.rate-card.featured { border-color: var(--red); box-shadow: var(--shadow-md); }
.rate-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 3px 12px; border-radius: 100px; white-space: nowrap;
}
.rate-pair { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.flag { font-size: 1.5rem; }
.pair-label { font-size: 0.8rem; font-weight: 700; color: var(--gray-500); letter-spacing: 0.05em; }
.rate-value { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.rate-sub { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 8px; }
.rate-trend { font-size: 0.72rem; font-weight: 700; }
.rate-trend.up { color: var(--teal); }
.rates-footer { text-align: center; }
.rates-footer p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 16px; }

/* ========== SERVICES SECTION ========== */
.services-section { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius); padding: 32px; border: 2px solid var(--gray-200);
  transition: all 0.3s; position: relative;
}
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card.featured-service { border-color: var(--red); background: linear-gradient(135deg, #fff 0%, #fff5f6 100%); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.service-card h3 .cn { font-size: 0.85em; color: var(--red); display: block; margin-top: 2px; }
.service-card p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.7; }
.service-card ul { display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { font-size: 0.85rem; color: var(--gray-700); padding: 6px 10px; background: var(--gray-50); border-radius: 6px; }
.service-card ul li::before { content: "✓ "; color: var(--teal); font-weight: 700; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.pay-method { display: flex; align-items: center; gap: 8px; padding: 10px; background: var(--gray-50); border-radius: 8px; font-size: 0.8rem; color: var(--gray-700); font-weight: 500; }
.pay-method span:first-child { font-size: 1.4rem; }

/* ========== HOW IT WORKS ========== */
.how-section { padding: 90px 0; background: var(--navy); }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.step { flex: 1; text-align: center; padding: 32px 24px; }
.step-num { font-size: 3.5rem; font-weight: 900; color: rgba(200,16,46,0.2); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.4; }
.step h3 .cn { font-size: 0.85em; color: var(--teal); display: block; margin-top: 2px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }
.step-arrow { font-size: 2rem; color: rgba(200,16,46,0.5); flex-shrink: 0; padding: 0 8px; }

/* ========== WHY CHOOSE US ========== */
.why-section { padding: 90px 0; background: white; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 28px; border-radius: var(--radius); background: var(--gray-50); transition: all 0.3s; border: 2px solid transparent; }
.why-card:hover { border-color: var(--red); background: white; box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.why-card h4 .cn { font-size: 0.85em; color: var(--red); display: block; }
.why-card p { color: var(--gray-500); font-size: 0.85rem; line-height: 1.7; }

/* ========== STATS ========== */
.stats-section { padding: 60px 0; background: var(--red); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: white; margin-bottom: 6px; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ========== ABOUT ========== */
.about-section { padding: 90px 0; background: var(--gray-50); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
.about-text p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.highlight { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.hl-icon { font-size: 1.1rem; }
.about-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-person { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.person-avatar { width: 52px; height: 52px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.contact-person strong { display: block; font-size: 1rem; color: var(--navy); }
.contact-person span { display: block; font-size: 0.78rem; color: var(--gray-500); }
.contact-details-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-700); }
.contact-item:hover { color: var(--red); }
.ci-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ========== CONTACT SECTION ========== */
.contact-section { padding: 90px 0; background: var(--navy-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; font-family: inherit; color: var(--navy); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { color: var(--teal); font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.info-block { }
.info-block h4 { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.info-block p { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.7; }
.info-block a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.info-block a:hover { color: var(--teal); }
.payment-icons h4 { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.pay-icons-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon-badge { padding: 6px 14px; background: rgba(255,255,255,0.1); border-radius: 100px; font-size: 0.8rem; color: white; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); }

/* ========== FOOTER ========== */
.footer { background: var(--navy); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h5 { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact h5 { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.75rem; line-height: 1.7; }

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: white; font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 100px; box-shadow: 0 4px 20px rgba(200,16,46,0.45);
  transition: all 0.3s; animation: float 3s ease-in-out infinite;
}
.floating-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 28px rgba(200,16,46,0.55); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ========== RESPONSIVE ========== */

/* Prevent horizontal overflow on all screens */
body { overflow-x: hidden; }
.hero, section { overflow-x: hidden; }

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-text h1 { font-size: 2.8rem; }
  .rates-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { gap: 0; }
  .step { padding: 28px 16px; }
}

/* ---- Mobile 768px ---- */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 16px; }

  /* Header */
  .nav {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: 0.95rem; border-radius: 8px; }
  .hamburger { display: flex; }
  .header-actions .btn-outline { display: none; }

  /* Hero */
  .hero { padding: 90px 0 48px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-widget { order: -1; }
  .hero-text { text-align: center; }
  .hero-badge { font-size: 0.72rem; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }

  /* Section spacing */
  .rates-section,
  .services-section,
  .how-section,
  .why-section,
  .about-section,
  .contact-section { padding: 60px 0; }
  .stats-section { padding: 44px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.65rem; }

  /* Rates */
  .rates-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rate-value { font-size: 1.9rem; }
  .rate-card { padding: 18px 14px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* How it works */
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step { padding: 24px 20px; text-align: center; }
  .step-arrow { transform: rotate(90deg); font-size: 1.4rem; padding: 4px 0; text-align: center; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 20px 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2rem; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-text h2 { font-size: 1.65rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 36px; }
}

/* ---- Small Mobile 480px ---- */
@media (max-width: 480px) {
  /* Base */
  .container { padding: 0 14px; }

  /* Header */
  .header-inner { height: 62px; }
  .nav { top: 62px; }
  .logo-en { font-size: 1rem; }

  /* Hero */
  .hero { padding: 78px 0 40px; }
  .hero-text h1 { font-size: 2rem; line-height: 1.2; }
  .hero-badge { font-size: 0.68rem; padding: 5px 10px; white-space: normal; text-align: center; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }
  .trust-item { font-size: 0.75rem; }

  /* Widget */
  .widget-card { padding: 18px 16px; }
  .input-group input { font-size: 1.05rem; padding: 10px 10px; }
  .input-group select { padding: 10px 6px; font-size: 0.8rem; }
  .widget-header h3 { font-size: 1rem; }

  /* Section headers */
  .section-header h2 { font-size: 1.45rem; }
  .cn-title { font-size: 0.95rem; }
  .section-header { margin-bottom: 28px; }

  /* Rates */
  .rates-grid { grid-template-columns: 1fr; gap: 10px; }
  .rate-card { padding: 16px; }
  .rate-value { font-size: 2rem; }

  /* Services */
  .service-card { padding: 20px 16px; }
  .payment-methods { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 18px 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.75rem; }

  /* About */
  .about-text h2 { font-size: 1.45rem; }
  .about-card { padding: 20px 16px; }

  /* Contact */
  .contact-form-wrap { padding: 20px 16px; border-radius: var(--radius); }
  .contact-info-wrap { gap: 18px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 20px; padding-bottom: 28px; }
  .footer-bottom p { font-size: 0.7rem; }

  /* Floating CTA — icon-only circle */
  .floating-cta span { display: none; }
  .floating-cta { padding: 15px; border-radius: 50%; bottom: 16px; right: 16px; animation: none; }

  /* Buttons */
  .btn-lg { padding: 12px 22px; font-size: 14px; }
}
