/* =============================================
   UBM Inc — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:    #0A1628;
  --navy-80: #1a2e4a;
  --blue:    #1E6FBF;
  --teal:    #0EA5A0;
  --sky:     #E8F4FD;
  --white:   #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-300:#CBD5E1;
  --gray-500:#64748B;
  --gray-700:#334155;
  --text:    #0A1628;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(10,22,40,0.08);
  --shadow:    0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.16);

  --max-w: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: #155fa0; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; fill: white; }

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: #0c9490 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-menu .nav-cta { background: var(--teal); text-align: center; margin-top: 8px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(30,111,191,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(14,165,160,0.15) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,160,0.15);
  border: 1px solid rgba(14,165,160,0.3);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title span { color: var(--teal); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}

.hcard {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.hcard-main {
  width: 300px;
  left: 30px; top: 40px;
  background: rgba(14,165,160,0.12);
  border-color: rgba(14,165,160,0.25);
  z-index: 3;
}

.hcard-back1 {
  width: 280px;
  left: 10px; top: 20px;
  z-index: 2;
  transform: rotate(-3deg);
}

.hcard-back2 {
  width: 260px;
  left: 50px; top: 10px;
  z-index: 1;
  transform: rotate(4deg);
}

.hcard-icon {
  width: 52px; height: 52px;
  background: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.hcard-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.hcard-list { display: flex; flex-direction: column; gap: 6px; }
.hcard-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hcard-list li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(14,165,160,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 10px;
  flex-shrink: 0;
}

/* Floating pills */
.hero-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}
.hero-pill .pill-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.hero-pill:nth-child(2) { animation-delay: -2s; }

.pill-1 { bottom: 60px; left: -20px; }
.pill-2 { top: 0; right: -10px; }

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

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--sky);
  padding: 64px 0;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-sub { max-width: 100%; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.about-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feat-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.feat-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.feat-text p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.about-contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.about-contact-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.about-contact-card p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(14,165,160,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail-info span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-detail-info strong {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: 96px 0;
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header .section-sub { margin-inline: auto; }

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--gray-300);
  background: transparent;
  color: var(--gray-500);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-3px);
}

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-card .product-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}
.product-items li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Colors per category */
.cat-respiratory .product-icon { background: #EFF6FF; }
.cat-daily      .product-icon { background: #F0FDF4; }
.cat-disposable .product-icon { background: #FFF7ED; }

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--navy);
  padding: 96px 0;
}

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

.why-text .section-title { color: var(--white); }
.why-text .section-sub   { color: rgba(255,255,255,0.65); }

.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

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

.why-num {
  width: 36px; height: 36px;
  background: rgba(14,165,160,0.15);
  border: 1px solid rgba(14,165,160,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.why-item-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.08); }

.why-card-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-sub { margin-bottom: 36px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-sm); }

.cc-icon {
  width: 48px; height: 48px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cc-info span { font-size: 12px; color: var(--gray-500); display: block; margin-bottom: 2px; }
.cc-info strong { font-size: 15px; color: var(--navy); font-weight: 600; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }

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

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-80);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-brand { }
.footer-logo  { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-tfn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,160,0.15);
  border: 1px solid rgba(14,165,160,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--white); }

/* =============================================
   INNER PAGES (Privacy / T&C)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.6); }

.legal-content {
  max-width: 800px;
  margin-inline: auto;
  padding: 64px 24px 96px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sky);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content ul li { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content a  { color: var(--blue); }

.legal-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 36px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-desc         { margin-inline: auto; }
  .hero-actions      { justify-content: center; }
  .hero-stats        { justify-content: center; }
  .hero-visual       { display: none; }

  .about-strip-inner { grid-template-columns: 1fr; }
  .why-us-inner      { grid-template-columns: 1fr; }
  .contact-inner     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-title { font-size: 32px; }

  .about-features { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .why-cards { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
