/* =====================================================
   TMC Bookkeeping Services LLC — Premium Home Styles
   Theme: Blue, Black & White
   ===================================================== */

:root {
  --blue: #0F4C81;
  --blue-dark: #0A3860;
  --blue-darker: #061F38;
  --blue-light: #1B6BB0;
  --blue-lighter: #4A9EE0;
  --blue-soft: #E8F1FA;
  --blue-glow: #7EC4F5;
  --accent: #2E8BE6;
  --black: #0A0F1A;
  --gray-900: #1a2332;
  --gray-700: #465166;
  --gray-500: #7a869a;
  --gray-300: #cfd6e2;
  --gray-100: #f4f7fb;
  --gray-50: #fafbfd;
  --white: #ffffff;
  --success: #10b981;
  --shadow-sm: 0 4px 12px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 76, 129, 0.18);
  --shadow-xl: 0 30px 80px rgba(15, 76, 129, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(.4,.2,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.01em;
}

.accent { color: var(--blue); }
.accent-light { color: var(--blue-glow); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary { position: relative; overflow: hidden; isolation: isolate; color: #fff !important; }
.btn-primary::before { z-index: -1; }
.btn-primary *, .btn-primary i, .btn-primary span { position: relative; z-index: 1; color: #fff !important; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 76, 129, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.btn-block { width: 100%; justify-content: center; }

/* ============ Top Bar ============ */
.topbar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: var(--gray-300); margin-left: 18px; transition: color .3s; }
.topbar a:hover { color: var(--blue-glow); }
.topbar-right a i { margin-right: 5px; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .3s;
}
.logo:hover { transform: scale(1.03); }
.logo img {
  height: 75px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}
.logo-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--blue);
  line-height: 1;
}
.logo-text small {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav ul { display: flex; gap: 28px; }
.nav ul a {
  font-weight: 500;
  font-size: 17px;
  color: var(--gray-900);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transition: width .3s;
}
.nav ul a:hover, .nav ul a.active { color: var(--blue); }
.nav ul a:hover::after, .nav ul a.active::after { width: 100%; }
.nav-cta { padding: 12px 24px; font-size: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.hamburger span {
  display: block;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 31, 56, 0.95) 0%, rgba(15, 76, 129, 0.88) 50%, rgba(10, 56, 96, 0.92) 100%),
    url('https://images.unsplash.com/photo-1554224155-1696413565d3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: shapeFloat 15s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--blue-glow); bottom: -50px; right: 10%; animation-delay: -5s; }
.shape-3 { width: 250px; height: 250px; background: var(--blue-light); top: 50%; right: -80px; animation-delay: -10s; }

@keyframes shapeFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.1); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.hero-badge i { color: #FFD86B; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--blue-glow); position: relative; }
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 3px;
  width: 100%; height: 8px;
  background: rgba(126, 196, 245, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats > div > div { display: flex; align-items: baseline; gap: 2px; }
.hero-stats h3 {
  font-size: 34px;
  color: var(--blue-glow);
  font-weight: 800;
  display: inline;
}
.hero-stats span {
  font-size: 26px;
  color: var(--blue-glow);
  font-weight: 800;
}
.hero-stats p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 4px 0 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-main-img {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-main-img > img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255,255,255,0.15);
  animation: heroImgFloat 6s ease-in-out infinite;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255,255,255,0.15);
  animation: heroImgFloat 6s ease-in-out infinite;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
@keyframes heroImgFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge-floating {
  position: absolute;
  background: var(--white);
  color: var(--gray-900);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge-floating i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-badge-floating strong { display: block; font-size: 15px; color: var(--black); }
.hero-badge-floating small { font-size: 11px; color: var(--gray-500); }
.badge-top { top: 20px; left: -30px; animation-delay: 0s; }
.badge-bot { bottom: 30px; right: -30px; animation-delay: -2s; }

.avatar-group { display: flex; }
.avatar-group span,
.avatar-group img {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-group span:first-child,
.avatar-group img:first-child { margin-left: 0; }

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

/* ============ Trust Strip ============ */
.trust-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gray-500);
  padding-right: 30px;
  border-right: 2px solid var(--gray-100);
}
.trust-items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-items > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 14px;
  transition: color .3s;
}
.trust-items > div:hover { color: var(--blue); }
.trust-items i { color: var(--blue); font-size: 16px; }

/* ============ Sections ============ */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 12px 0 16px;
}
.section-head p { color: var(--gray-700); font-size: 16px; }
.mini-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--blue-soft);
  border-radius: 50px;
}
.mini-label.light { background: rgba(126, 196, 245, 0.15); color: var(--blue-glow); }

/* ============ About ============ */
.about-section { background: var(--gray-50); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-images { position: relative; height: 620px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute;
  top: 40%;
  left: -20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: heroImgFloat 5s ease-in-out infinite;
}
.about-experience h3 {
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-experience p {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  font-weight: 600;
}

.about-content h2 { margin: 12px 0 18px; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.about-lead { color: var(--gray-700); margin-bottom: 34px; font-size: 16px; }

.about-features { display: grid; gap: 22px; margin-bottom: 34px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 4px solid var(--blue);
}
.about-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.af-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-feature h4 { font-size: 16px; margin-bottom: 4px; }
.about-feature p { font-size: 13.5px; color: var(--gray-700); }

/* ============ Who We Serve ============ */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.serve-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.serve-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.serve-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.serve-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.serve-card:hover .serve-img img { transform: scale(1.1); }
.serve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 31, 56, 0.15) 0%, rgba(6, 31, 56, 0.35) 45%, rgba(6, 31, 56, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 26px;
}
.serve-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.serve-tag i { color: #FFB800; font-size: 11px; }
.serve-overlay-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.serve-overlay-content h3 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.serve-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: var(--transition);
}
.serve-card:hover .serve-icon {
  transform: rotate(-8deg) scale(1.08);
}
.serve-body { padding: 30px 32px 32px; }
.serve-body > p {
  color: var(--gray-700);
  margin-bottom: 22px;
  font-size: 15px;
}
.serve-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--gray-300);
}
.serve-body li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}
.serve-body li i {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(15,76,129,0.25);
}
.serve-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 50px;
  background: var(--blue-soft);
  transition: var(--transition);
}
.serve-link:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  gap: 12px;
  box-shadow: var(--shadow-md);
}

/* ============ Services ============ */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--gray-100));
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.12); }
.service-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 31, 56, 0.05) 0%, rgba(6, 31, 56, 0.15) 60%, rgba(6, 31, 56, 0.5) 100%);
  transition: opacity .4s;
}
.service-card:hover .service-img-wrap::after {
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.1) 0%, rgba(15, 76, 129, 0.25) 60%, rgba(15, 76, 129, 0.55) 100%);
}
.service-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.service-icon {
  position: absolute;
  bottom: 18px;
  left: 20px;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(15,76,129,0.4);
  z-index: 3;
  transition: var(--transition);
  border: 3px solid var(--white);
}
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 14px 30px rgba(15,76,129,0.55);
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h4 { font-size: 20px; margin-bottom: 12px; }
.service-body p {
  color: var(--gray-700);
  font-size: 14.5px;
  margin-bottom: 22px;
  flex: 1;
}
.service-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  width: 100%;
  transition: gap .3s, color .3s;
}
.service-link:hover { gap: 14px; color: var(--accent); }
.service-link i { transition: transform .3s; }
.service-link:hover i { transform: translateX(3px); }

/* ============ Feature Showcase ============ */
.feature-showcase { padding: 60px 0 100px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-content { order: 2; }
.feature-content h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin: 12px 0 18px; }
.feature-content > p { color: var(--gray-700); font-size: 16px; margin-bottom: 22px; }
.feature-check { display: grid; gap: 12px; }
.feature-check li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}
.feature-check i { color: var(--blue); font-size: 20px; }

.feature-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.feature-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.feature-float {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.feature-float.alt { left: auto; right: -25px; bottom: -25px; }
.feature-float i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feature-float strong { display: block; font-size: 16px; color: var(--black); }
.feature-float small { font-size: 12px; color: var(--gray-500); }

/* ============ Process ============ */
.process-section {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--blue-soft) 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,230,0.12) 0%, transparent 70%);
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,76,129,0.1) 0%, transparent 70%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--blue-light) 15%,
    var(--blue) 50%,
    var(--blue-light) 85%,
    transparent 100%);
  opacity: 0.35;
  z-index: 0;
}
.process-step {
  background: var(--white);
  padding: 40px 28px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 30px rgba(15,76,129,0.08);
}
.process-step:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-xl);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  padding: 6px 14px 6px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15,76,129,0.25);
}
.step-badge-num {
  background: var(--white);
  color: var(--blue);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 11px;
}

.step-icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}
.step-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--blue-light);
  opacity: 0.4;
  animation: rotateSlow 20s linear infinite;
}
.process-step:hover .step-icon-wrap::before {
  opacity: 0.8;
  border-color: var(--blue);
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.step-icon {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--white) 100%);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  transition: var(--transition);
  border: 3px solid var(--white);
  box-shadow: inset 0 4px 12px rgba(15,76,129,0.08), 0 6px 20px rgba(15,76,129,0.15);
  position: relative;
  z-index: 2;
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: scale(1.05) rotate(-6deg);
  box-shadow: 0 15px 35px rgba(15,76,129,0.4);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
}
.process-step p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 60px;
  right: -22px;
  width: 30px; height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(15,76,129,0.2);
  z-index: 3;
}
.process-step:last-child .step-arrow { display: none; }

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::before { width: 300px; height: 300px; top: -100px; right: -100px; }
.cta-banner::after { width: 200px; height: 200px; bottom: -80px; left: 5%; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 16px; margin: 0; }

/* ============ Why Us ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--gray-100);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-soft), var(--white));
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: var(--transition);
  border: 2px solid var(--blue-soft);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  transform: rotate(-6deg);
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--gray-700); font-size: 14px; }

/* ============ Calculator ============ */
.calculator-section { background: var(--gray-50); }
.calculator {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--gray-100);
}
.calc-row { margin-bottom: 28px; }
.calc-row label {
  display: flex; justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.calc-row label span {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.calc-row input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-100);
  -webkit-appearance: none;
  outline: none;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue-light) 50%, var(--gray-100) 50%);
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--blue);
  box-shadow: 0 4px 10px rgba(15,76,129,0.35);
  cursor: pointer;
  transition: transform .2s;
}
.calc-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-row input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--blue);
  cursor: pointer;
}
.range-labels {
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

.calc-result {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.calc-badge {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.calc-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
#savings {
  font-size: 52px;
  color: var(--white);
  margin: 10px 0 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.calc-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.calc-result .btn { background: var(--white); color: var(--blue) !important; position: relative; z-index: 1; }
.calc-result .btn *, .calc-result .btn i, .calc-result .btn span { color: var(--blue) !important; }
.calc-result .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.calc-result .btn::before { display: none; }

/* ============ Testimonials ============ */
.testimonial-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: 55px 45px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  min-height: 320px;
  border: 1px solid var(--gray-100);
}
.testimonial-wrap::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: 'Poppins', serif;
  font-size: 100px;
  color: var(--blue-soft);
  line-height: 1;
  font-weight: 900;
}
.testimonial-slide { display: none; animation: fadeIn .6s ease; }
.testimonial-slide.active { display: block; }
.testimonial-stars { color: #FFB800; margin-bottom: 16px; font-size: 16px; }
.testimonial-slide p {
  font-size: 18px;
  color: var(--gray-900);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testimonial-author img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-soft);
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--black); text-align: left; }
.testimonial-author span { font-size: 13px; color: var(--gray-500); text-align: left; }

.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition);
}
.dot.active {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  width: 30px; border-radius: 5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Contact ============ */
.contact {
  background: linear-gradient(135deg, var(--black) 0%, var(--blue-darker) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1554224155-1696413565d3?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: 0.04;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-info h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 12px 0 16px;
}
.contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 34px; font-size: 16px; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover {
  background: rgba(46, 139, 230, 0.1);
  border-color: rgba(126, 196, 245, 0.3);
  transform: translateY(-3px);
}
.contact-item i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(46, 139, 230, 0.15);
  color: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: var(--white); }
.contact-item span { font-size: 12px; color: rgba(255,255,255,0.7); word-break: break-word; }

.contact-form {
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  color: var(--gray-900);
}
.contact-form h3 { font-size: 24px; margin-bottom: 6px; color: var(--black); }
.form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
}
.form-note i { color: var(--success); margin-right: 4px; }

/* ============ Footer ============ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  margin-bottom: 20px;
}
.footer-logo img { width: 170px; height: auto; max-width: 100%; border-radius: 0; background: transparent; object-fit: contain; }
.footer-logo strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: 16px;
}
.footer-logo small {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col > p { font-size: 14px; margin-bottom: 22px; line-height: 1.7; }
.footer-col h5 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--blue-light);
}
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--blue-glow); transform: translateX(4px); }
.contact-list li i { color: var(--blue-glow); margin-right: 8px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.socials a:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  transform: translateY(-4px) rotate(-8deg);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============ Scroll Progress Bar ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--accent));
  box-shadow: 0 2px 10px rgba(46,139,230,0.5);
  z-index: 999;
  transition: width .1s linear;
}

/* ============ Back to top ============ */
.to-top {
  position: fixed;
  bottom: 170px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============ Scroll Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1) rotate(0); }

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-zoom { transform: scale(0.85); }
.reveal-flip { transform: perspective(1000px) rotateX(20deg); transform-origin: bottom; }
.reveal-slide-up { transform: translateY(80px); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Section head reveal */
.section-head.reveal .mini-label,
.section-head.reveal h2,
.section-head.reveal p {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}
.section-head.reveal.visible .mini-label { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.section-head.reveal.visible h2 { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-head.reveal.visible p { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* Parallax on scroll */
.parallax-slow { transition: transform .1s linear; }

/* Text reveal (words) */
.word-reveal { display: inline-block; overflow: hidden; }
.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.word-reveal.visible span { opacity: 1; transform: translateY(0); }

/* Image reveal with overlay wipe */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(.7,0,.3,1);
  z-index: 2;
  pointer-events: none;
}
.img-reveal.visible::after { transform: scaleX(0); }
.img-reveal img { transform: scale(1.15); transition: transform 1.4s ease; }
.img-reveal.visible img { transform: scale(1); }

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease forwards;
}
.fade-up:nth-child(2) { animation-delay: .15s; }
.fade-up:nth-child(3) { animation-delay: .3s; }
.fade-up:nth-child(4) { animation-delay: .45s; }
.fade-up:nth-child(5) { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ================================================
   RESPONSIVE — Tablet
   ================================================ */
@media (max-width: 992px) {
  .hero { padding: 50px 0 70px; background-attachment: scroll; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-main-img { max-width: 380px; }
  .badge-top { left: -10px; }
  .badge-bot { right: -10px; }

  .trust-inner { gap: 20px; }
  .trust-label { border: none; padding: 0; }

  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-images { max-width: 500px; margin: 0 auto; height: 540px; }

  .serve-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-content { order: 0; }
  .feature-row.reverse .feature-image { order: -1; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .step-arrow { display: none !important; }

  .cta-inner { text-align: center; justify-content: center; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .calculator { grid-template-columns: 1fr; padding: 34px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    max-width: 88%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 28px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right .4s cubic-bezier(.4,.2,.2,1);
    align-items: flex-start;
    gap: 20px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.open { right: 0; }
  .nav ul { flex-direction: column; width: 100%; gap: 4px; }
  .nav ul a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 16px; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 10px; }
  .hamburger { display: flex; z-index: 101; position: relative; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 31, 56, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 98;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }
}

/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 55px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 1.7rem; }

  .topbar { font-size: 11px; padding: 8px 0; }
  .topbar-inner { justify-content: center; text-align: center; gap: 6px; }
  .topbar a { margin-left: 8px; }

  .header-inner { padding: 12px 18px; }

  .hero { padding: 40px 0 60px; min-height: auto; background-attachment: scroll; }
  .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 18px; }
  .hero h1 { font-size: 1.9rem; margin-bottom: 16px; }
  .hero p { font-size: 14.5px; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 36px; }
  .btn { justify-content: center; padding: 13px 22px; font-size: 14px; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 22px;
    text-align: center;
  }
  .hero-stats > div { align-items: center; text-align: center; }
  .hero-stats > div > div { justify-content: center; }
  .hero-stats h3 { font-size: 22px; }
  .hero-stats span { font-size: 16px; }
  .hero-stats p { font-size: 10.5px; letter-spacing: 0.3px; line-height: 1.3; }

  .hero-visual { margin-top: 30px; }
  .hero-main-img { max-width: 280px; }
  .hero-main-img img { border-radius: var(--radius-lg); }
  .hero-badge-floating { padding: 10px 14px; border-radius: 12px; }
  .hero-badge-floating strong { font-size: 12px; }
  .hero-badge-floating small { font-size: 10px; }
  .hero-badge-floating i { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
  .avatar-group span, .avatar-group img { width: 26px; height: 26px; font-size: 9px; }
  .badge-top { top: 15px; left: -12px; }
  .badge-bot { bottom: 20px; right: -12px; }

  .trust-strip { padding: 30px 0; }
  .trust-items { gap: 16px; }
  .trust-items > div { font-size: 12.5px; }
  .trust-label { font-size: 11px; letter-spacing: 1.5px; }

  .about-images {
    position: relative;
    height: auto;
    max-width: 100%;
    width: 100%;
    display: block;
    padding-bottom: 60px;
  }
  .about-img-main {
    position: relative;
    width: 100%;
    height: 420px;
    top: auto; left: auto;
    border-radius: var(--radius-xl);
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .about-img-secondary {
    position: absolute;
    width: 50%;
    height: 170px;
    bottom: 0;
    right: 12px;
    border-width: 6px;
    z-index: 2;
  }
  .about-experience {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 14px 20px;
    z-index: 3;
    animation: none;
  }
  .about-experience h3 { font-size: 30px; }
  .about-experience p { font-size: 11px; }
  .about-content { margin-top: 30px; }
  .about-content h2 { font-size: 1.7rem; }
  .about-feature { padding: 14px; }
  .about-feature h4 { font-size: 15px; }
  .about-feature p { font-size: 13px; }

  .serve-img { height: 220px; }
  .serve-overlay { padding: 18px 20px; }
  .serve-overlay-content h3 { font-size: 20px; }
  .serve-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; }
  .serve-tag { font-size: 11px; padding: 5px 12px; }
  .serve-body { padding: 26px 22px; }
  .serve-body ul { grid-template-columns: 1fr; gap: 10px; padding-bottom: 18px; }
  .serve-body > p { font-size: 14px; margin-bottom: 18px; }
  .serve-link { padding: 10px 18px; font-size: 13px; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-img-wrap { height: 220px; }
  .service-body { padding: 24px; }
  .service-body h4 { font-size: 18px; }

  .feature-showcase { padding: 40px 0 60px; }
  .feature-row { margin-bottom: 60px; gap: 30px; }
  .feature-content h2 { font-size: 1.65rem; }
  .feature-content > p { font-size: 14.5px; }
  .feature-check li { font-size: 14px; }
  .feature-float { padding: 12px 16px; left: 15px !important; right: auto !important; bottom: -20px; }
  .feature-float strong { font-size: 14px; }
  .feature-float small { font-size: 11px; }
  .feature-float i { width: 38px; height: 38px; font-size: 15px; }

  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-step { padding: 34px 24px 28px; }
  .step-icon-wrap { width: 88px; height: 88px; margin-bottom: 20px; }
  .step-icon { font-size: 28px; }
  .process-step h4 { font-size: 18px; }

  .cta-banner { padding: 50px 0; }
  .cta-inner h2 { font-size: 1.6rem; }
  .cta-inner p { font-size: 14px; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 26px 22px; }
  .why-icon { width: 62px; height: 62px; font-size: 24px; margin-bottom: 16px; }
  .why-card h4 { font-size: 17px; }

  .calculator { padding: 26px 20px; gap: 26px; border-radius: var(--radius-lg); }
  .calc-result { padding: 30px 22px; }
  #savings { font-size: 38px; }
  .calc-badge { width: 52px; height: 52px; font-size: 22px; }

  .testimonial-wrap { padding: 40px 22px 30px; min-height: 280px; }
  .testimonial-slide p { font-size: 15px; line-height: 1.6; }
  .testimonial-wrap::before { font-size: 70px; left: 20px; top: 10px; }
  .testimonial-author img { width: 46px; height: 46px; }
  .testimonial-author strong { font-size: 14px; }
  .testimonial-author span { font-size: 12px; }

  .contact { padding: 55px 0; }
  .contact-info h2 { font-size: 1.7rem; }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; }
  .contact-item { padding: 14px; }
  .contact-item i { width: 40px; height: 40px; font-size: 15px; }
  .contact-form { padding: 28px 22px; border-radius: var(--radius-lg); }
  .contact-form h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  .footer-col h5 { margin-bottom: 15px; }
  .footer-logo img { width: 130px; }

  .logo-text strong { font-size: 14px; }
  .logo-text small { font-size: 9.5px; letter-spacing: 0.8px; }
  .logo img { height: 55px; width: auto; }

  .cta-inner { flex-direction: column; text-align: center; gap: 20px; }

  .to-top { width: 42px; height: 42px; bottom: 150px; right: 20px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 12px; }
  .hero-stats h3 { font-size: 20px; }
  .feature-float, .feature-float.alt { left: 10px; right: auto; bottom: -20px; }
}

/* ============ Booking Modal ============ */
.booking-modal {
  position: fixed; inset: 0;
  background: rgba(6, 20, 40, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.booking-modal.active { display: flex; }
.booking-box {
  background: #fff;
  border-radius: 16px;
  width: 100%; max-width: 780px;
  max-height: 92vh; overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: bookingIn .3s ease;
}
@keyframes bookingIn { from { opacity: 0; transform: translateY(20px);} to {opacity:1;transform:none;} }
.booking-close {
  position: absolute; top: 12px; right: 16px;
  background: transparent; border: none;
  font-size: 32px; line-height: 1; cursor: pointer;
  color: #666;
}
.booking-close:hover { color: #000; }
.booking-header h3 { font-size: 22px; color: var(--blue); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
.booking-header h3 i { margin-right: 8px; color: var(--accent); }
.booking-header p { color: #666; font-size: 14px; margin-bottom: 20px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head strong { font-size: 15px; color: var(--gray-900); font-family: 'Poppins', sans-serif; }
.cal-nav { background: #f4f6fa; border: none; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; color: var(--blue); }
.cal-nav:hover { background: var(--blue); color: #fff; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span { text-align: center; font-size: 11px; color: #888; font-weight: 600; padding: 6px 0; }
.cal-day {
  background: #f4f6fa; border: none; padding: 8px 0; border-radius: 8px; cursor: pointer;
  font-size: 13px; color: var(--gray-900); font-weight: 500;
  transition: all .2s;
}
.cal-day:hover:not(.disabled) { background: var(--blue-light); color: #fff; }
.cal-day.active { background: var(--blue); color: #fff; }
.cal-day.disabled { background: transparent; color: #ccc; cursor: not-allowed; }
.booking-times label { display: block; font-size: 13px; color: var(--gray-900); font-weight: 600; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.booking-times label small { color: #888; font-weight: 400; margin-left: 4px; }
.time-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-height: 240px; overflow-y: auto; }
.time-slot {
  background: #fff; border: 1.5px solid var(--blue-light); color: var(--blue);
  padding: 10px; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.time-slot:hover { background: var(--blue-light); color: #fff; }
.time-slot.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.booking-fields input {
  padding: 12px 14px; border: 1.5px solid #e2e6ee; border-radius: 8px;
  font-size: 14px; font-family: inherit;
}
.booking-fields input:focus { outline: none; border-color: var(--blue); }
.booking-fields input[name="phone"] { grid-column: 1 / -1; }
.booking-submit { width: 100%; justify-content: center; }
@media (max-width: 640px) {
  .booking-box { padding: 24px 18px; }
  .booking-grid { grid-template-columns: 1fr; gap: 18px; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-header h3 { font-size: 18px; }
}

/* ============ Chat Widget ============ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 60px;
  z-index: 9998;
  font-family: 'Inter', sans-serif;
}
.chat-label {
  position: absolute;
  bottom: 60px;
  right: -69px;
  width: 200px;
  height: 70px;
  animation: chatLabelBounce 2.5s ease-in-out infinite;
  pointer-events: none;
  background: transparent;
}
.chat-label-svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 2px 4px rgba(15,76,129,0.3)); }
.chat-widget.open .chat-label { display: none; }
.chat-sparkle {
  position: absolute;
  font-size: 16px;
  color: var(--blue-light);
  animation: sparkle 1.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(59,130,246,0.6);
}
.chat-sparkle.left { left: 6px; top: 44px; }
.chat-sparkle.right { right: 6px; top: 44px; animation-delay: 0.4s; }
@keyframes chatLabelBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes sparkle {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.chat-toggle {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15,76,129,0.4);
  transition: transform .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-toggle:hover { transform: scale(1.08); }
.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }
.chat-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.5;
  animation: chatPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.chat-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 2.5px solid #fff;
  border-radius: 50%;
}
.chat-box {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.chat-widget.open .chat-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.chat-header-info { flex: 1; }
.chat-header-info strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}
.chat-header-info span {
  font-size: 11px;
  opacity: 0.9;
  display: flex; align-items: center; gap: 6px;
}
.chat-online-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}
.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s;
}
.chat-close:hover { background: rgba(255,255,255,0.15); }
.chat-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f6f8fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: #fff;
  color: var(--gray-900);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing .chat-bubble { display: flex; gap: 4px; padding: 12px 14px; }
.chat-msg.typing .chat-bubble span {
  width: 7px; height: 7px;
  background: #b0b8c4;
  border-radius: 50%;
  animation: chatTyping 1.2s infinite;
}
.chat-msg.typing .chat-bubble span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing .chat-bubble span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}
.chat-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.chat-quick button {
  background: #fff;
  border: 1.5px solid #e2e6ee;
  color: var(--blue);
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all .2s;
}
.chat-quick button:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateX(3px);
}
.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #eef1f6;
}
.chat-input input {
  flex: 1;
  border: 1.5px solid #e2e6ee;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.chat-input input:focus { border-color: var(--blue); }
.chat-input button {
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.chat-input button:hover { transform: scale(1.08); }

@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-box { width: calc(100vw - 32px); height: calc(100vh - 100px); bottom: 74px; }
  .chat-label { font-size: 12px; padding: 6px 12px; }
}

/* ============ HoneyBook Popup ============ */
.hb-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(6,20,40,0.85);
  display: none;
  z-index: 999999;
}
.hb-popup.active { display: block; }
.hb-popup-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  width: min(900px, calc(100% - 40px));
  height: min(780px, calc(100% - 40px));
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hb-popup-close {
  position: absolute; top: 8px; right: 12px;
  background: #fff;
  border: none;
  font-size: 28px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #333;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  line-height: 1;
  padding: 0;
}
.hb-popup-close:hover { background: #f0f0f0; }
.hb-popup iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
@media (max-width: 768px) {
  .hb-popup { background: #fff; }
  .hb-popup-box {
    top: 0; left: 0;
    transform: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hb-popup iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
  }
  .hb-popup-close {
    position: fixed;
    top: 8px; right: 8px;
    width: 40px; height: 40px;
    font-size: 26px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 1000000;
  }
}

/* ============ FAQ Section ============ */
.faq-section {
  background: linear-gradient(180deg, #f6f8fb 0%, #eaf1fa 100%);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(15,76,129,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.faq-section .container { position: relative; z-index: 1; }
.faq-list {
  max-width: 820px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15,76,129,0.08);
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.faq-item:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 10px 30px rgba(15,76,129,0.12);
  transform: translateY(-2px);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 15px 40px rgba(15,76,129,0.18);
  transform: translateY(-2px);
}
.faq-item.open::before { opacity: 1; }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
  transition: color .25s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--blue); }
.faq-q i {
  color: var(--blue);
  font-size: 15px;
  width: 36px;
  height: 36px;
  background: rgba(59,130,246,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s, color .3s;
}
.faq-item.open .faq-q {
  color: var(--blue);
  padding-bottom: 14px;
}
.faq-item.open .faq-q i {
  transform: rotate(135deg);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15,76,129,0.35);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 30px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 30px 26px;
}
.faq-a p {
  color: #5a6577;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  padding-top: 4px;
  border-top: 1.5px dashed rgba(15,76,129,0.15);
  padding-top: 18px;
}
@media (max-width: 640px) {
  .faq-list { margin-top: 32px; gap: 12px; }
  .faq-q { padding: 18px 20px 18px 24px; font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 20px 20px; }
  .faq-a p { font-size: 14px; padding-top: 14px; }
  .faq-q i { width: 30px; height: 30px; font-size: 13px; }
}
