/* ============================================
   Country Flames — Style Sheet
   60/30/10 Design Principle
   60%  Light  #f8f7f4  (backgrounds)
   30%  Dark   #1a1a1a  (hero, why-us, footer)
   10%  Accent #D70006  (CTAs, highlights)
   Fonts: Inter (headings), DM Sans (body)
   Pure CSS — No JavaScript
   ============================================ */

:root {
  /* 60% Light */
  --light: #f8f7f4;
  --light-100: #f2f1ed;
  --light-200: #e8e6e1;
  --light-300: #d5d2cb;

  /* 30% Dark */
  --dark: #1a1a1a;
  --dark-300: #999;
  --dark-400: #777;
  --dark-500: #555;
  --dark-600: #333;
  --dark-700: #2a2a2a;

  /* 10% Accent */
  --accent: #D70006;
  --accent-hover: #b50005;
  --accent-light: rgba(215, 0, 6, 0.08);

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Layout */
  --radius: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark-700);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-label--light {
  color: rgba(215, 0, 6, 0.7);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title--light {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--dark-400);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub--light {
  color: var(--dark-300);
}

.text-accent {
  color: var(--accent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--dark-600);
  border-color: var(--dark-600);
}

.btn-outline-light:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ── Promo Banner ── */
.promo-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
}

.promo-sep {
  margin: 0 8px;
  opacity: 0.3;
}

.promo-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-banner a:hover {
  color: var(--accent);
}

/* ── Navbar ── */
.nav-toggle-input {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--light-200);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-600);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.75) 40%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(215, 0, 6, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(215, 0, 6, 0.2);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--dark-300);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-300);
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Features Bar ── */
.features-bar {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid var(--light-200);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.feature-item {
  padding: 24px 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--dark-400);
}

/* ── Products ── */
.products {
  padding: 96px 0;
  background: var(--light);
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

.spotlight-left,
.spotlight-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.spotlight-feature {
  display: flex;
  gap: 16px;
}

.sf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--dark);
}

.sf-icon svg {
  width: 100%;
  height: 100%;
}

.spotlight-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.spotlight-feature p {
  font-size: 0.82rem;
  color: var(--dark-400);
  line-height: 1.55;
}

/* Image Placeholders */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8e6e1 0%, #d5d2cb 100%);
  border: 2px dashed var(--light-300);
  border-radius: var(--radius-lg);
  color: var(--dark-400);
  text-align: center;
  padding: 40px 20px;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.img-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.img-hint {
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  color: var(--dark-300) !important;
  font-style: italic;
}

.img-placeholder--large {
  width: 100%;
  aspect-ratio: 3/4;
}

.img-placeholder--product {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: none;
}

.img-placeholder--about {
  width: 100%;
  aspect-ratio: 4/3;
}

.img-placeholder--example {
  width: 100%;
  aspect-ratio: 16/10;
}

/* Product Images (actual) */
.product-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-img--large {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
}

.product-img--card {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-img--example {
  aspect-ratio: 16/10;
}

.product-img--about {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
}

.example-warm {
  background: linear-gradient(135deg, #2a1a10 0%, #3a2015 50%, #1a0a05 100%);
  border-color: #4a3020;
  color: #8a7060;
}

.example-warm svg {
  opacity: 0.3;
  stroke: #8a7060;
}

.example-warm span {
  color: #a08878;
}

.example-neutral {
  background: linear-gradient(135deg, #1a1a18 0%, #2a2a25 50%, #151510 100%);
  border-color: #3a3a35;
  color: #7a7a70;
}

.example-neutral svg {
  opacity: 0.3;
  stroke: #7a7a70;
}

.example-neutral span {
  color: #9a9a90;
}

.example-cool {
  background: linear-gradient(135deg, #101820 0%, #1a2530 50%, #0a1018 100%);
  border-color: #2a3540;
  color: #6a7a8a;
}

.example-cool svg {
  opacity: 0.3;
  stroke: #6a7a8a;
}

.example-cool span {
  color: #8a9aaa;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--dark);
  color: #fff;
}

.product-badge--value {
  background: var(--accent);
}

.product-body {
  padding: 24px;
}

.product-category {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-300);
  margin-bottom: 4px;
  display: block;
}

.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-body>p {
  font-size: 0.85rem;
  color: var(--dark-400);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--dark-600);
}

.product-features svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-200);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--dark-300);
}

/* CTA Product Card */
.product-card--cta {
  background: var(--dark);
  border-color: var(--dark);
  display: flex;
  align-items: center;
}

.product-card--cta:hover {
  border-color: var(--dark-600);
}

.product-cta-inner {
  padding: 32px 24px;
  text-align: center;
}

.product-cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.product-cta-icon svg {
  width: 100%;
  height: 100%;
}

.product-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.product-cta-inner>p {
  font-size: 0.85rem;
  color: var(--dark-300);
  line-height: 1.55;
  margin-bottom: 20px;
}

.product-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--dark-300);
}

.product-cta-phone:hover {
  color: #fff;
}

/* ── Image Examples ── */
.image-examples {
  padding: 96px 0;
  background: #fff;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.example-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-200);
  transition: all var(--transition);
}

.example-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.example-caption {
  padding: 24px;
  background: var(--light);
}

.example-caption h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.example-caption p {
  font-size: 0.82rem;
  color: var(--dark-400);
  line-height: 1.55;
}

/* ── About ── */
.about {
  padding: 96px 0;
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-label {
  margin-bottom: 12px;
}

.about-text .section-title {
  margin-bottom: 20px;
  text-align: left;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text>p {
  font-size: 0.92rem;
  color: var(--dark-400);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-values {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--light-200);
}

.about-value svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--light-200);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-400);
  font-weight: 500;
}

/* ── Why Choose Us (30% Dark) ── */
.why-us {
  padding: 96px 0;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(215, 0, 6, 0.3);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-500);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--accent);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--dark-300);
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
  padding: 96px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  padding: 32px;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  background: var(--light);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.testimonial-card--featured {
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.testimonial-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.quote-mark {
  width: 28px;
  height: 28px;
  color: var(--light-300);
  margin-bottom: 8px;
  display: block;
}

.testimonial-quote p {
  font-size: 0.92rem;
  color: var(--dark-600);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-200);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-100);
  border: 2px solid var(--light-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-400);
}

.author-avatar svg {
  width: 22px;
  height: 22px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--dark-400);
}

/* ── Contact ── */
.contact {
  padding: 96px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label {
  margin-bottom: 12px;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-lead {
  font-size: 0.95rem;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--dark-400);
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Order Form */
.order-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-200);
}

.order-form-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-200);
}

.form-header-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 12px;
}

.order-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.order-form-header p {
  font-size: 0.85rem;
  color: var(--dark-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--light-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── Footer (30% Dark) ── */
.footer {
  background: var(--dark);
  color: var(--dark-300);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-col--brand>p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--dark-400);
  margin-bottom: 4px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--dark-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
}

.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  color: var(--dark-400);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--dark-500);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--dark-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--dark-500);
}

.footer-bottom-links a:hover {
  color: var(--dark-300);
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-left,
  .spotlight-right {
    flex-direction: row;
    gap: 24px;
  }

  .spotlight-center {
    order: -1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    order: -1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .examples-grid .example-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--light-200);
    box-shadow: var(--shadow);
    z-index: 100;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-100);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle-input:checked~.nav-links {
    display: flex;
  }

  .nav-toggle-input:checked~.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle-input:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked~.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-left,
  .spotlight-right {
    flex-direction: column;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .examples-grid .example-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card--featured {
    transform: none;
  }

  .testimonial-card--featured:hover {
    transform: translateY(-2px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-form-wrapper {
    padding: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}