@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-body: #ffffff;
  --bg-panel: #fcfbfa;
  --bg-card: #ffffff;
  --bg-card-alt: #f9f6f4;
  --bg-dark-plum: #312730;

  --text-primary: #0d1221;
  --text-secondary: #37373d;
  --text-muted: #878787;
  --text-white: #ffffff;

  --accent-orange: #f75c30;

  /* Gradients */
  --gradient-dark: linear-gradient(180deg, #312730 0%, #0d1221 100%);
  --gradient-rainbow: linear-gradient(-90deg, rgb(245, 79, 79) 0%, rgb(255, 128, 65) 33.6%, rgb(237, 199, 74) 66.8%, rgb(46, 42, 246) 100%);
  --gradient-light-glow: radial-gradient(circle, rgba(247, 92, 48, 0.08) 0%, transparent 60%);

  /* Typography */
  --font-heading: 'Host Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Borders & Shadows */
  --border-light: 1px solid rgba(13, 18, 33, 0.06);
  --border-accent: 1.5px solid var(--accent-orange);
  --border-dark: 1px solid rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 10px rgba(13, 18, 33, 0.03);
  --shadow-md: 0 10px 30px rgba(13, 18, 33, 0.06);
  --shadow-lg: 0 20px 50px rgba(13, 18, 33, 0.08);

  /* Layout */
  --max-width: 1224px;
  --header-height: 88px;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Nav Link Hover states */
a:hover {
  color: var(--accent-orange);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-light);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 76px;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent-orange);
}

.logo-img {
  height: 24px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-email-support {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.85rem;
  line-height: 1.3;
}

.nav-email-support span {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-email-support a {
  font-weight: 600;
  color: var(--text-primary);
}

.nav-email-support a:hover {
  color: var(--accent-orange);
}

/* Hamburger menu button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-primary);
}

/* Premium Dark Gradient Button (Signature Bartix Button) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-dark);
  padding: 6px 6px 6px 24px;
  border-radius: 32px;
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-body);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.btn-pill .arrow-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 18, 33, 0.15);
}

.btn-pill:hover .arrow-circle {
  background: var(--accent-orange);
  color: var(--text-white);
}

.btn-pill:hover .arrow-circle svg {
  transform: translateX(2px);
}

/* Secondary Button Link */
.btn-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 8px;
}

.btn-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-link:hover {
  color: var(--accent-orange);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

/* Global Section Spacing & Structure */
section {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

/* Section headers standard styling */
.section-header {
  max-width: 720px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 59px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.badge-studio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--bg-panel);
  border: var(--border-light);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.badge-studio::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.partners-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  padding-top: 24px;
  border-top: var(--border-light);
}

.partners-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.partners-logo {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}

.partners-img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.partners-img:hover {
  opacity: 1;
}

/* Hero Visual Graphic Box */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Metrics Row Section */
.metrics-section {
  padding: 40px 24px 80px 24px;
}

.metrics-container {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--bg-panel);
  border: var(--border-light);
  border-radius: 24px;
  padding: 40px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: var(--border-light);
}

.metric-item:last-child {
  border-right: none;
}

.metric-num {
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bento Card Grids (Benefits Section 1: Lifecycle) */
.benefits-outer {
  background-color: var(--bg-panel);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  padding: 110px 0;
}

.bento-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.bento-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 92, 48, 0.15);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(247, 92, 48, 0.06);
  border: 1px solid rgba(247, 92, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.bento-icon-box svg {
  width: 20px;
  height: 20px;
}

.bento-step-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.15;
  line-height: 1;
}

.bento-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bento-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Features Template (Text Left, Graphic Right) */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 575px;
  gap: 74px;
  align-items: center;
  padding: 110px 24px;
}

.feature-section.reverse {
  grid-template-columns: 575px 1fr;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-content .section-label {
  margin-bottom: 0;
}

.feature-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-subcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.subcard-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subcard-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-orange);
}

.subcard-icon svg {
  width: 100%;
  height: 100%;
}

.subcard-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
}

.subcard-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Checklist items on Feature Section 2 */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

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

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 18, 33, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.checklist-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Mockup graphic wrappers inside Features */
.feature-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Asymmetric Bento Cards (Benefits Section 2: Wide/Narrow Grid) */
.asymmetric-section {
  padding: 110px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.asymmetric-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  margin-top: 56px;
}

.asymmetric-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: auto;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.asymmetric-card-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.asymmetric-card-grid .asymmetric-card-top {
  max-width: 100%;
}



.partners-section {
  width: 100%;
  background: transparent;
  border: none;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.partners-banner-img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: block;
}

.partners-banner-img:hover {
  opacity: 1;
}



.asymmetric-card-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  z-index: 2;
}

.asymmetric-title {
  font-size: 2rem;
  font-weight: 600;
}

.asymmetric-desc {
  font-size: 1rem;
  color: var(--text-secondary);
}

.asymmetric-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  z-index: 2;
}

/* Testimonial Metric Section (Dark Plum Banner) */
.plum-banner-outer {
  background-color: var(--bg-dark-plum);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.plum-banner-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}

.plum-banner-graphic {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border: var(--border-dark);
  overflow: hidden;
}

.plum-banner-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.plum-banner-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--text-white);
}

.plum-banner-quote {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-white);
}

.plum-banner-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plum-author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
}

.plum-author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.plum-banner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: var(--border-dark);
}

.plum-stat-num {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.plum-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Services 3-Column Feature Grid (Benefits Section 3) */
.services-outer-section {
  padding: 110px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card-v2 {
  background: var(--bg-card-alt);
  border: var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 380px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover {
  transform: translateY(-4px);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 92, 48, 0.15);
}

.service-icon-box-v2 {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 18, 33, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.service-card-v2:hover .service-icon-box-v2 {
  background: var(--accent-orange);
  color: var(--text-white);
}

.service-icon-box-v2 svg {
  width: 20px;
  height: 20px;
}

.service-card-v2 h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.service-card-v2 p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Customers Rating Testimonial Stats */
.rating-section {
  padding: 110px 24px;
  border-top: var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}

.rating-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.rating-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rating-stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-num {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.rating-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 140px 24px 150px 24px;
  border-top: var(--border-light);
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 600;
}

.cta-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Contact Grid & Form Layout */
.contact-outer {
  background-color: var(--bg-panel);
  border-top: var(--border-light);
  padding: 110px 0;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 74px;
  width: 100%;
}

.contact-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-left h3 {
  font-size: 2.25rem;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-detail-text a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-detail-text a:hover {
  color: var(--accent-orange);
}

/* Form Styling - Premium Inputs */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-left-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.contact-form {
  background: var(--bg-card);
  border: var(--border-light);
  padding: 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  background: var(--bg-panel);
  border: var(--border-light);
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  width: 100%;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(247, 92, 48, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Validation states */
.form-control.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.02);
}

.error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  display: none;
  margin-top: 4px;
}

.form-control.error+.error-msg {
  display: block;
}

/* Success State overlay overlay */
.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
  padding: 32px;
  text-align: center;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.success-title {
  font-size: 1.75rem;
  font-weight: 600;
}

.success-text {
  color: var(--text-secondary);
  max-width: 340px;
}

/* Footer Section */
footer {
  background: var(--bg-dark-plum);
  color: var(--text-white);
  padding: 40px 24px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-brand .logo {
  color: var(--text-white);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 96px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* Animations and Scroll Transitions */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .store-badges {
    align-items: center;
  }

  .store-links {
    justify-content: center;
  }

  .feature-section,
  .feature-section.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-img {
    order: 2;
    height: auto;
  }

  .feature-section.reverse .feature-img {
    order: 2;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metric-item {
    border-right: none;
  }

  .metric-item:nth-child(odd) {
    border-right: var(--border-light);
  }

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

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

  .asymmetric-card {
    min-height: auto;
    padding: 0;
  }

  .asymmetric-card-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 32px;
    min-height: auto;
  }

  .asymmetric-img {
    height: auto;
    order: 2;
  }



  .asymmetric-card-grid .asymmetric-card-top {
    max-width: 100%;
  }

  .plum-banner-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .plum-banner-graphic {
    height: 320px;
  }

  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .rating-section {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .rating-stats {
    justify-content: center;
  }

  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-left-img {
    min-height: unset;
    height: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: var(--header-height);
    flex-direction: column;
    background: var(--bg-body);
    width: 100%;
    height: calc(100vh - var(--header-height));
    transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 24px;
    justify-content: flex-start;
    gap: 24px;
    border-top: var(--border-light);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta-wrapper {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .metrics-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .metric-item:nth-child(odd) {
    border-right: none;
  }

  .bento-grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-subcards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plum-banner-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .footer-links {
    gap: 48px;
    flex-direction: column;
  }
}

/* Turnstile Security Widget Error State */
.turnstile-group.error .error-msg {
  display: block;
}