/* AquaShield Landing Page Styles */
:root {
  --aq-primary: #099db7;
  --aq-primary-dark: #088da5;
  --aq-accent: #0aa6bf;
  --aq-bg: #0a0f14;
  --aq-muted: #f7f9fb;
  --aq-text: #334155;
  --aq-text-dark: #1e293b;
  --aq-radius: 12px;
  --aq-shadow: 0 8px 30px rgba(2, 24, 43, 0.12);
  --aq-shadow-hover: 0 12px 40px rgba(2, 24, 43, 0.18);
  --aq-gap: 1.25rem;
}

/* Layout */
#aquashield-landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--aq-text);
}
.aq-container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-inline: 0;
}

/* Sections - REDUCED SPACING */
.aq-section {
  padding: clamp(48px, 6vw, 80px) 0;
}
.aq-section.aq-muted {
  background: var(--aq-muted);
}

/* Hero - ENHANCED PREMIUM STYLING */
.gradient-bg {
  background: linear-gradient(135deg, #099db7 0%, #088da5 50%, #077a8d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.aq-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
  position: relative;
  isolation: isolate;
}
.aq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 30% 20%, rgba(255, 255, 255, 0.15), transparent 60%),
              radial-gradient(900px 400px at 80% 80%, rgba(10, 58, 70, 0.4), transparent 70%);
  z-index: -1;
}
.aq-hero-title {
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}
.aq-hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 clamp(28px, 4vw, 36px);
  max-width: 54ch;
  line-height: 1.5;
}
.aq-trust {
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(28px, 4vw, 36px);
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}
.aq-trust strong {
  color: #ffffff;
}
.aq-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.aq-cta-row.center {
  justify-content: center;
  margin-top: clamp(24px, 3vw, 32px);
}

/* Buttons - CONSISTENT STYLING */
#aquashield-landing .aq-btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--aq-radius);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
#aquashield-landing .btn-primary {
  background: var(--aq-primary);
  color: #ffffff !important;
  border: 2px solid var(--aq-primary);
}
#aquashield-landing .btn-primary:hover {
  background: var(--aq-primary-dark);
  border-color: var(--aq-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 157, 183, 0.3);
}
#aquashield-landing .btn-secondary {
  background: #ffffff;
  color: var(--aq-primary) !important;
  border: 2px solid #ffffff;
}
#aquashield-landing .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}
#aquashield-landing .btn-ghost {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
#aquashield-landing .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.aq-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  background: linear-gradient(90deg, var(--aq-primary), #0aa6bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  text-align: center;
}
.aq-kicker {
  color: var(--aq-text);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  text-align: center;
}

/* Grids */
.aq-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}
.aq-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aq-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aq-vcenter { align-items: center; }
@media (max-width: 980px) {
  .aq-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .aq-grid-3, .aq-grid-2 { grid-template-columns: 1fr; }
}

/* Feature Cards - ENHANCED WITH ICONS */
.aq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--aq-shadow);
  transition: all 0.3s ease;
  position: relative;
}
.aq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aq-shadow-hover);
  border-color: rgba(9, 157, 183, 0.3);
}
.aq-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(9, 157, 183, 0.1), rgba(9, 157, 183, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.aq-card-icon i {
  font-size: 24px;
  color: var(--aq-primary);
}
.aq-card:hover .aq-card-icon {
  background: linear-gradient(135deg, var(--aq-primary), var(--aq-accent));
  transform: scale(1.05);
}
.aq-card:hover .aq-card-icon i {
  color: #ffffff;
}
.aq-card h3 {
  margin: 0 0 clamp(10px, 1.5vw, 12px);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: var(--aq-text-dark);
  line-height: 1.3;
}
.aq-card p {
  margin: 0;
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 15px;
}

/* Testimonial Feature - REDESIGNED */
.aq-testimonial-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 48px);
  align-items: start;
}
.aq-quote-block {
  background: #ffffff;
  border-left: 5px solid var(--aq-primary);
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: var(--aq-radius);
  box-shadow: var(--aq-shadow);
  position: relative;
}
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  color: rgba(9, 157, 183, 0.1);
}
.aq-quote {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--aq-text-dark);
  margin: 0 0 16px;
  font-style: italic;
}
.aq-quote-author {
  font-size: 15px;
  color: var(--aq-text);
  font-weight: 500;
}
.aq-stats-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.aq-stat-item {
  background: linear-gradient(135deg, #ffffff, #f8fafb);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.aq-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 24, 43, 0.1);
}
.aq-stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--aq-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.aq-stat-label {
  font-size: 13px;
  color: var(--aq-text);
  line-height: 1.3;
}
@media (max-width: 900px) {
  .aq-testimonial-feature {
    grid-template-columns: 1fr;
  }
  .aq-stats-block {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .aq-stats-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aq-note, .aq-small, .aq-subtle {
  color: #64748b;
  margin-top: clamp(16px, 2vw, 20px);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.aq-subtle {
  font-size: 17px;
  margin-bottom: 12px;
}

/* Gallery - ENHANCED */
.aq-gallery {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(8, minmax(200px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.aq-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  background: #ecf3f6;
  scroll-snap-align: start;
  user-select: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.aq-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  border-color: var(--aq-primary);
}
@media (max-width: 720px) {
  .aq-gallery img { height: 180px; }
}

/* Compare Table - STUNNING REDESIGN */
.aq-compare-intro {
  text-align: center;
  font-size: 18px;
  color: var(--aq-text);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.aq-compare-table {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--aq-shadow);
  border: 1px solid #e2e8f0;
}
.aq-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #f1f5f9;
}
.aq-compare-col-header {
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  background: #ffffff;
}
.aq-compare-col-header.featured {
  background: linear-gradient(135deg, var(--aq-primary), var(--aq-accent));
  color: #ffffff;
}
.aq-compare-col-header i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.aq-compare-col-header.featured i {
  color: #ffffff;
}
.aq-compare-col-header:not(.featured) i {
  color: var(--aq-text);
}
.aq-compare-col-header h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
}
.aq-compare-row-new {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 2px;
  background: #f1f5f9;
  align-items: center;
}
.aq-compare-label {
  padding: clamp(16px, 2vw, 20px);
  background: #ffffff;
  font-weight: 600;
  color: var(--aq-text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.aq-compare-label i {
  color: var(--aq-primary);
  font-size: 20px;
  min-width: 24px;
}
.aq-compare-col {
  padding: clamp(16px, 2vw, 20px);
  background: #ffffff;
  text-align: center;
}
.aq-compare-col.featured {
  background: linear-gradient(180deg, #f0fafb, #ffffff);
}
.aq-compare-check, .aq-compare-cross {
  font-size: 28px;
  margin-bottom: 8px;
}
.aq-compare-check i {
  color: #10b981;
}
.aq-compare-cross i {
  color: #ef4444;
}
.aq-compare-col p {
  margin: 0;
  color: var(--aq-text);
  line-height: 1.5;
  font-size: 15px;
}
.aq-compare-cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(28px, 3.5vw, 40px);
  background: linear-gradient(135deg, #f0fafb, #f8fafb);
  border-radius: var(--aq-radius);
  border: 1px solid rgba(9, 157, 183, 0.15);
}
.aq-compare-cta .aq-summary {
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 600;
  color: var(--aq-text-dark);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.aq-compare-cta .aq-summary i {
  color: var(--aq-primary);
  font-size: 24px;
}
@media (max-width: 900px) {
  .aq-compare-row-new {
    grid-template-columns: 1fr;
  }
  .aq-compare-label {
    border-bottom: 2px solid var(--aq-primary);
  }
}

/* Process Steps - MODERN CARDS */
.aq-steps-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin: clamp(32px, 4vw, 48px) 0;
}
.aq-step-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.aq-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aq-shadow-hover);
  border-color: var(--aq-primary);
}
.aq-step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--aq-primary), var(--aq-accent));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(9, 157, 183, 0.3);
}
.aq-step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(9, 157, 183, 0.1), rgba(9, 157, 183, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 20px;
}
.aq-step-icon i {
  font-size: 32px;
  color: var(--aq-primary);
}
.aq-step-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--aq-text-dark);
}
.aq-step-card p {
  margin: 0;
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 980px) {
  .aq-steps-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .aq-steps-modern {
    grid-template-columns: 1fr;
  }
}

/* Aftercare - MODERN GRID */
.aq-aftercare-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: var(--aq-shadow);
  margin-top: clamp(32px, 4vw, 48px);
}
.aq-aftercare-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
}
.aq-aftercare-header i {
  font-size: 32px;
  color: var(--aq-primary);
}
.aq-aftercare-header h3 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--aq-text-dark);
  font-weight: 700;
}
.aq-aftercare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.aq-aftercare-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafb, #ffffff);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.aq-aftercare-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(2, 24, 43, 0.08);
}
.aq-aftercare-item > i {
  font-size: 28px;
  color: var(--aq-primary);
  min-width: 32px;
}
.aq-aftercare-item strong {
  display: block;
  font-size: 16px;
  color: var(--aq-text-dark);
  margin-bottom: 6px;
}
.aq-aftercare-item p {
  margin: 0;
  color: var(--aq-text);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .aq-aftercare-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Tiers - ENHANCED */
.aq-tier {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: var(--aq-shadow);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.aq-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--aq-shadow-hover);
}
.aq-tier-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--aq-text-dark);
  margin-bottom: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  text-align: center;
}
.aq-tier-points {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding-left: 0;
  display: grid;
  gap: clamp(12px, 1.5vw, 16px);
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 15px;
  list-style: none;
  flex-grow: 1;
}
.aq-tier-points li {
  padding-left: 28px;
  position: relative;
}
.aq-tier-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aq-primary);
  font-weight: 700;
  font-size: 18px;
}
.aq-btn-tier {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.aq-tier.featured {
  border-color: var(--aq-primary);
  background: linear-gradient(180deg, #ffffff, #f8fdfe);
  box-shadow: 0 16px 48px rgba(9, 157, 183, 0.25);
  transform: scale(1.05);
}
.aq-tier.featured:hover {
  transform: translateY(-4px) scale(1.05);
}
.aq-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--aq-primary), var(--aq-accent));
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(9, 157, 183, 0.35);
  letter-spacing: 0.5px;
}

/* FAQ - POLISHED */
.aq-faq {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.aq-faq details {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--aq-radius);
  box-shadow: var(--aq-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}
.aq-faq details[open] {
  border-color: var(--aq-primary);
  box-shadow: 0 8px 24px rgba(9, 157, 183, 0.15);
}
.aq-faq summary {
  padding: clamp(16px, 2vw, 20px) clamp(20px, 2.5vw, 28px);
  cursor: pointer;
  font-weight: 700;
  color: var(--aq-text-dark);
  outline: none;
  list-style: none;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.2s ease;
  position: relative;
}
.aq-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--aq-primary);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.aq-faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.aq-faq summary:hover {
  background: rgba(9, 157, 183, 0.04);
}
.aq-faq summary::-webkit-details-marker { display: none; }
.aq-faq details > div {
  padding: 0 clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
  color: var(--aq-text);
  line-height: 1.7;
  font-size: 15px;
}

/* Form - ENHANCED */
.aq-form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: var(--aq-shadow);
}
.aq-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.aq-field label {
  font-weight: 600;
  color: var(--aq-text-dark);
  font-size: 15px;
}
.aq-field input,
.aq-field select,
.aq-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafb;
  color: var(--aq-text-dark);
  transition: all 0.2s ease;
  font-size: 15px;
  font-family: inherit;
}
.aq-field input:focus,
.aq-field select:focus,
.aq-field textarea:focus {
  outline: none;
  border-color: var(--aq-primary);
  box-shadow: 0 0 0 4px rgba(9, 157, 183, 0.1);
  background: #ffffff;
}
#aquashield-landing .hidden { display: none !important; }

.aq-inline-note {
  margin-top: 16px;
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 14px;
  text-align: center;
}
.aq-inline-note .link {
  color: var(--aq-primary);
  font-weight: 600;
}

.aq-bullets {
  padding-left: 24px;
  margin: 0 0 clamp(24px, 3vw, 32px);
  color: var(--aq-text);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.aq-bullets li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Submit spinner */
#aquashield-landing .submit-btn {
  position: relative;
}
#aquashield-landing .loading-spinner-btn {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  border-top-color: #ffffff;
  animation: aqspin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes aqspin {
  to { transform: rotate(360deg); }
}

/* Sidecard */
.aq-sidecard {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: var(--aq-shadow);
}
.aq-sidecard h3 {
  margin: 0 0 clamp(14px, 2vw, 18px);
  color: var(--aq-text-dark);
  font-size: 20px;
  line-height: 1.3;
}
.aq-sidecard > p {
  line-height: 1.6;
  color: var(--aq-text);
  font-size: 15px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.aq-love {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid #e2e8f0;
}
.aq-love h4 { 
  margin: 0 0 clamp(14px, 1.5vw, 18px);
  color: var(--aq-text-dark);
  font-size: 16px;
}
.aq-love p { 
  margin: 0 0 clamp(14px, 1.5vw, 16px);
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 14px;
  font-style: italic;
}

.aq-success {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--aq-radius);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--aq-shadow);
  text-align: center;
}
.aq-success h3 {
  margin: 0 0 12px;
  color: var(--aq-text-dark);
  font-size: 24px;
}
.aq-success p {
  margin: 0;
  color: var(--aq-text);
  line-height: 1.6;
  font-size: 16px;
}

/* Mobile Refinements */
@media (max-width: 720px) {
  .aq-section {
    padding: clamp(40px, 8vw, 64px) 0;
  }
  .aq-hero {
    padding: clamp(60px, 10vw, 100px) 0 clamp(48px, 8vw, 72px);
  }
  .aq-container {
    width: min(1200px, 90vw);
  }
  .aq-heading {
    margin-bottom: clamp(20px, 5vw, 28px);
  }
  .aq-card,
  .aq-tier,
  .aq-form,
  .aq-sidecard {
    padding: 24px 20px;
  }
  .aq-cta-row {
    flex-direction: column;
  }
  .aq-cta-row .btn {
    width: 100%;
    text-align: center;
  }
}
