/* ============================================================
   DPDPD Pvt Ltd — Global Design System
   Premium Light Theme · Rose · Violet · Amber · Mint
   ============================================================ */

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

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Replacing old navy/blue with rose-violet system */
  --navy:        #6d28d9;
  --navy-2:      #7c3aed;
  --navy-3:      #5b21b6;
  --blue:        #e11d48;
  --blue-light:  #fb7185;
  --blue-glow:   rgba(225,29,72,0.14);

  /* Accents */
  --gold:        #f59e0b;
  --gold-light:  #fcd34d;
  --teal:        #ec4899;
  --mint:        #10b981;

  /* Surfaces */
  --surface:     #fdf4ff;
  --surface-2:   #fce7f3;
  --white:       #ffffff;

  /* Text */
  --text-dark:   #1a0a2e;
  --text-mid:    #3b1f5e;
  --text-light:  #7c5c8a;
  --text-muted:  #b39abf;

  /* Borders */
  --border:      #f3d4fb;
  --border-dark: #e4b0f0;

  /* Radii */
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Shadows */
  --shadow-sm:   0 2px 10px rgba(109,40,217,0.07);
  --shadow:      0 8px 30px rgba(109,40,217,0.10);
  --shadow-lg:   0 20px 60px rgba(109,40,217,0.12);
  --shadow-xl:   0 30px 80px rgba(109,40,217,0.16);

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #fdf4ff 0%, #fce7f3 35%, #fff0f3 65%, #fef9ee 100%);
  --gradient-brand:   linear-gradient(135deg, #e11d48, #ec4899);
  --gradient-violet:  linear-gradient(135deg, #6d28d9, #a855f7);
  --gradient-gold:    linear-gradient(135deg, #f59e0b, #fcd34d);
  --gradient-card:    linear-gradient(160deg, #ffffff 0%, #fdf4ff 100%);
  --gradient-shimmer: linear-gradient(90deg, #e11d48, #ec4899, #f59e0b, #10b981, #a855f7, #e11d48);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

/* ── HEADER / NAVBAR ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(225,29,72,0.08);
  box-shadow: 0 4px 30px rgba(109,40,217,0.07);
}

/* Animated rainbow accent line */
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-shimmer);
  background-size: 300% auto;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ──────────────────────────────────────────────────── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img-ring {
  position: relative;
  width: 50px;
  height: 50px;
}

/* .logo-img-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: var(--gradient-brand);
  z-index: 0;
} */

.logo-img-ring::before {
  display: none;
}
.logo-wrap img {
  position: relative;

  z-index: 1;

  width: 54px;

  height: 54px;

  object-fit: contain;

  background: transparent !important;

  border: none !important;

  border-radius: 0 !important;

  padding: 0 !important;

  box-shadow: none !important;

  mix-blend-mode: multiply;
}
.logo-text-block {
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────────────
   SMART BEADS BRAND LOGO
───────────────────────────────────── */

.smart-brand-logo {
  margin-bottom: 16px;

  display: flex;
  align-items: center;

  width: fit-content;
}

.smart-brand-logo img {
  width: 250px;              /* professional balanced size */
  max-width: 100%;

  height: auto;

  object-fit: contain;

  display: block;

  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.10));

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* subtle premium hover */
.smart-brand-logo img:hover {
  transform: scale(1.015);

  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.14));
}

/* ─────────────────────────────────────
   SMART BEADS LEARNING IMAGE
───────────────────────────────────── */

.smart-learning-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-learning-image img {
  width: 100%;
  max-width: 620px;
  height: 100%;
  min-height: 520px;

  object-fit: cover;

  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(255, 0, 140, 0.12);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* premium hover effect */
.smart-learning-image img:hover {
  transform: translateY(-4px);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.22),
    0 12px 32px rgba(255, 0, 140, 0.18);
}

/* .logo-text-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text-block span {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
} */
/* Footer logo text fix */
footer .logo-text-block h2 {
  color: #ffffff;
}

footer .logo-text-block span {
  color: #fb7185;
}

/* ── FLOATING STARS EFFECT ───────────────────────── */
/* ── PREMIUM FLOATING STARS ─────────────────────────

footer .stars {
  position: absolute;
  inset: 0;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}

/* Individual stars */
/* footer .stars span {
  position: absolute;

  bottom: -50px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255,255,255,0.9);

  box-shadow:
    0 0 6px rgba(255,255,255,0.8),
    0 0 12px rgba(255,255,255,0.5);

  animation: floatingStars linear infinite;
}

/* Different star sizes */
footer .stars span:nth-child(2n) {
  width: 2px;
  height: 2px;
}

footer .stars span:nth-child(3n) {
  width: 3px;
  height: 3px;
}

/* Floating animation */
@keyframes floatingStars {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-900px) scale(0.2);
    opacity: 0;
  }
}

 */


 /* ── PREMIUM COSMIC STARS ───────────────────────── */

footer .stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Stars */
footer .stars span {
  position: absolute;

  bottom: -100px;

  border-radius: 50%;

  background: white;

  box-shadow:
    0 0 8px rgba(255,255,255,0.9),
    0 0 16px rgba(255,255,255,0.5),
    0 0 30px rgba(168,85,247,0.4);

  animation: cosmicFloat linear infinite;
}

/* Different sizes */
footer .stars span:nth-child(1) {
  width: 3px;
  height: 3px;
}

footer .stars span:nth-child(2) {
  width: 2px;
  height: 2px;
}

footer .stars span:nth-child(3) {
  width: 4px;
  height: 4px;
}

footer .stars span:nth-child(4) {
  width: 2px;
  height: 2px;
}

footer .stars span:nth-child(5) {
  width: 5px;
  height: 5px;
}

footer .stars span:nth-child(6) {
  width: 3px;
  height: 3px;
}

footer .stars span:nth-child(7) {
  width: 2px;
  height: 2px;
}

footer .stars span:nth-child(8) {
  width: 4px;
  height: 4px;
}

footer .stars span:nth-child(9) {
  width: 3px;
  height: 3px;
}

footer .stars span:nth-child(10) {
  width: 2px;
  height: 2px;
}

/* Animation */
@keyframes cosmicFloat {

  0% {
    transform:
      translateY(0px)
      scale(1);

    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform:
      translateY(-1000px)
      translateX(-40px)
      scale(0.2);

    opacity: 0;
  }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
  letter-spacing: 0.2px;
}

nav a:hover { color: var(--blue); }

nav a.active {
  color: var(--blue);
  font-weight: 700;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gradient-brand) !important;
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(225,29,72,0.30);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,29,72,0.44) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

/* ── HERO (INDEX) ───────────────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

/* Animated floating orbs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(225,29,72,0.16) 0%, transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(168,85,247,0.14) 0%, transparent 38%),
    radial-gradient(circle at 60% 75%, rgba(245,158,11,0.10) 0%, transparent 36%);
  animation: orb-drift 9s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(16px, -10px) scale(1.03); }
  100% { transform: translate(-8px, 6px) scale(0.98); }
}

/* Subtle dot pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(225,29,72,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225,29,72,0.09);
  border: 1px solid rgba(225,29,72,0.22);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

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

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 26px;
  letter-spacing: -1.5px;
}

.hero-content h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-btn {
  background: var(--gradient-brand);
  background-size: 200% auto;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(225,29,72,0.32);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(225,29,72,0.32); }
  50%       { box-shadow: 0 14px 44px rgba(225,29,72,0.54); }
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(225,29,72,0.48);
}

.ghost-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 14px;
  transition: color 0.2s;
}

.ghost-btn:hover { color: var(--blue); }

.play-ring {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(225,29,72,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.ghost-btn:hover .play-ring {
  border-color: var(--blue);
  background: rgba(225,29,72,0.06);
}

/* Hero image panel */
.hero-image {
  position: relative;
}

.hero-image-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(109,40,217,0.12));
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  transform: scale(1);
  transition: transform 0.6s;
}

.hero-image img:hover { transform: scale(1.02); }

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(225,29,72,0.14);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(109,40,217,0.12);
  animation: float-badge 4s ease-in-out infinite;
}

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

.badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

.badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.badge-text span   { font-size: 11px; color: var(--text-light); }

/* ── FEATURE STRIP ──────────────────────────────────────────── */
.feature-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;   /* SPACE BETWEEN CARDS */

  background: transparent;

  border: none;

  overflow: visible;
}

.feature-box {

  background: rgba(255,255,255,0.92);

  border-radius: 28px;

  padding: 36px 32px;

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(109,40,217,0.08);

  border: 1px solid rgba(236,72,153,0.10);
}

/* REMOVE OLD RIGHT BORDER */
.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {

  transform: translateY(-8px);

  box-shadow:
    0 24px 60px rgba(109,40,217,0.14);
}
.feature-box:last-child { border-right: none; }

.feature-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.feature-box:hover { background: #fdf4ff; }
.feature-box:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform 0.3s;
}

.feature-box:hover .feature-icon { transform: scale(1.1); }

.feature-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fce7f3;
  border: 1px solid #f3d4fb;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-light);
  max-width: 620px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
}

/* ── SERVICES / WHAT WE DO ──────────────────────────────────── */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdf4ff 0%, #ffffff 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 26px 34px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(225,29,72,0.11);
  border-color: #f3d4fb;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 75px; height: 75px;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: transform 0.3s;
}
.service-icons {
  width: 100px; height: 100px;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: transform 0.3s;
}

/* ─────────────────────────────────────
   SERVICE LOGO ICONS
───────────────────────────────────── */

.service-logo {
  background: rgba(255,255,255,0.95);

  padding: 10px;

  overflow: hidden;
}

.service-logo img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 12px;
}

.service-card:hover .service-icon { transform: scale(1.12); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, #e11d48 0%, #ec4899 45%, #a855f7 75%, #6d28d9 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Animated dot grid */
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: grid-shift 6s linear infinite;
}

@keyframes grid-shift {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 100px 0 90px;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(225,29,72,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(168,85,247,0.10) 0%, transparent 40%);
  animation: orb-drift 9s ease-in-out infinite alternate;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: var(--text-dark);
}

.page-hero p {
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
  color: var(--text-light);
  font-size: 19px;
}

/* =========================
   FLOATING D&B BANNER
========================= */

.duns-floating {

  position: fixed;

  bottom: 22px;

  right: 22px;

  z-index: 9999;

  animation:
    floatDuns 3.5s ease-in-out infinite;
}

.duns-floating a {

  display: block;

  transition: 0.35s ease;
}

.duns-floating a:hover {

  transform:
    translateY(-4px)
    scale(1.02);
}

.duns-floating img {  

  width: 590px;

  max-width: 240vw;

  background: #ffffff;

  border-radius: 17px;dpdpd_website/templates/dpdpd_website/aido/disclaimer.html 

  padding: 10px 14px;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.28);

  border: 1px solid rgba(255,255,255,0.15);

  object-fit: contain;
}
/* Floating Animation */

@keyframes floatDuns {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Mobile */

@media (max-width: 768px) {

  .duns-floating {

    right: 14px;

    bottom: 14px;
  }

  .duns-floating img {

    width: 190px;
  }
}
/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: var(--gradient-brand);
  z-index: -1;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px; height: 140px;
  border-radius: var(--radius-lg);
  background: var(--gradient-gold);
  z-index: -1;
  opacity: 0.5;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.about-content h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 16px;
}

.about-check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
}

.check-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Highlight cards */
.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: #f3d4fb;
}

.highlight-icon {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-display);
  transition: transform 0.3s;
}

.highlight-card:hover .highlight-icon { transform: scale(1.08); }

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.highlight-card p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.75;
}

/* Mission / Vision — vibrant gradient section */
.mission {
  background: linear-gradient(135deg, #e11d48 0%, #db2777 35%, #9333ea 65%, #6d28d9 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-shift 8s linear infinite;
}

.mission-inner { position: relative; z-index: 1; }

.mission h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.mission h2 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission p {
  max-width: 900px;
  margin: auto;
  line-height: 2;
  color: rgba(255,255,255,0.70);
  font-size: 18px;
}

/* ── PRODUCTS PAGE ──────────────────────────────────────────── */
.products-section { padding: 100px 0; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 80px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.4s;
}

.product-card:hover { box-shadow: var(--shadow-xl); }

.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
}

.tag {
  display: inline-block;
  background: #fce7f3;
  color: var(--blue);
  border: 1px solid #f3d4fb;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-content h2 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -2px;
}

.product-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 16px;
}

.feature-list { margin-top: 28px; }

.feature-list li {
  margin-bottom: 12px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(109,40,217,0.22);
}

.visit-btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(225,29,72,0.28);
}

/* Product image */
.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Gallery */
.gallery {
  padding: 0 64px 64px;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 48px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.4s;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #f3d4fb;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16;
}

/* Smart Beads vibrant card */
.smart-section {
  background: linear-gradient(135deg, #e11d48 0%, #db2777 45%, #6d28d9 100%) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

.smart-section .product-content h2,
.smart-section .product-content p { color: var(--white) !important; }

.smart-section .product-content p { color: rgba(255,255,255,0.70) !important; }

.smart-section .tag {
  background: rgba(255,255,255,0.15);
  color: #fce7f3;
  border-color: rgba(255,255,255,0.25);
}

.smart-section .feature-list li { color: rgba(255,255,255,0.85); }

.smart-section .feature-list li::before {
  background: rgba(255,255,255,0.15);
  color: #fce7f3;
}

.smart-section .visit-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.smart-section .visit-btn:hover {
  background: var(--white);
  color: #e11d48 !important;
}

/* Legal Dropdown */
.legal-dropdown { position: relative; display: inline-block; }

.legal-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
  padding: 14px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.25s;
  white-space: nowrap; user-select: none;
}

.legal-trigger:hover { background: #f3d4fb; border-color: var(--blue); color: var(--blue); }

.chevron { font-size: 10px; transition: transform 0.25s; }
.legal-dropdown.open .chevron { transform: rotate(180deg); }

.legal-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px); left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xl);
  z-index: 200; overflow: hidden;
  animation: menuSlide 0.2s ease;
}

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.legal-dropdown.open .legal-menu { display: block; }

.legal-menu-header {
  background: var(--gradient-brand);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 18px 11px;
}

.legal-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  color: var(--text-mid); font-size: 14px; font-weight: 500;
  transition: all 0.18s;
  border-bottom: 1px solid #f9f0fd;
}

.legal-menu a:last-child { border-bottom: none; }
.legal-menu a:hover { background: #fce7f3; color: var(--blue); padding-left: 24px; }

.menu-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}

.menu-arrow { font-size: 11px; opacity: 0; transition: opacity 0.18s; margin-left: auto; }
.legal-menu a:hover .menu-arrow { opacity: 1; }

/* ── LEGAL PAGE ─────────────────────────────────────────────── */
.legal-section { padding: 70px 0; }

.section-header-left { margin-bottom: 36px; }

.product-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fce7f3;
  color: var(--navy-2);
  border: 1.5px solid #f3d4fb;
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 18px;
}

.section-header-left h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-header-left p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.legal-card:hover {
  box-shadow: 0 16px 40px rgba(225,29,72,0.10);
  border-color: #f3d4fb;
  transform: translateY(-4px);
}

.legal-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.card-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text-dark);
}

.card-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; flex: 1; }

.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  font-family: var(--font-display);
  transition: 0.25s; width: fit-content;
}

.card-link:hover { background: var(--blue); gap: 12px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 60px;
}
/* ================= PROFESSIONAL FOOTER ================= */

.main-footer {
  position: relative;
  overflow: hidden;
  margin-top: 80px;

  background:
    radial-gradient(circle at top left, rgba(225,29,72,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.16), transparent 35%),
    linear-gradient(
      135deg,
      #0f0518 0%,
      #180826 25%,
      #24113d 55%,
      #12061c 100%
    );

  color: #ffffff;

  border-top: 1px solid rgba(236,72,153,0.18);
}

/* TOP GLOW LINE */

.main-footer::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    #e11d48,
    #ec4899,
    #f59e0b,
    #10b981,
    #a855f7,
    #06b6d4,
    #e11d48
  );

  background-size: 300% auto;

  animation: shimmer 6s linear infinite;
}

/* FOOTER WRAPPER */

.footer-wrapper {
  max-width: 1240px;

  margin: auto;

  padding: 75px 20px 30px;

  position: relative;
  z-index: 2;
}

/* GRID */

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 50px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* LOGO */

.footer-logo {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 24px;
}

.footer-logo img {
  width: 62px;
  height: 62px;

  border-radius: 16px;

  object-fit: cover;
}

.footer-logo h2 {
  color: #ffffff;

  font-size: 30px;

  font-weight: 800;

  line-height: 1;
}

.footer-logo span {
  color: rgba(255,255,255,0.55);

  letter-spacing: 2px;

  font-size: 11px;

  text-transform: uppercase;
}

/* BRAND */

.footer-brand p {
  color: rgba(255,255,255,0.72);

  line-height: 1.9;

  font-size: 15px;

  max-width: 420px;
}

/* PRODUCT TAGS */

.footer-products {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 24px;
}

.footer-products span {
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  padding: 10px 18px;

  border-radius: 100px;

  color: #9cefd8;

  font-size: 13px;
}

/* COLUMNS */

.footer-column h4 {
  color: #ffffff;

  font-size: 20px;

  margin-bottom: 28px;

  position: relative;
}

.footer-column h4::after {
  content: "";

  width: 42px;

  height: 3px;

  background: #00d2a8;

  position: absolute;

  left: 0;
  bottom: -12px;

  border-radius: 20px;
}

.footer-column a,
.footer-column p {
  display: block;

  text-decoration: none;

  color: rgba(255,255,255,0.72);

  margin-bottom: 14px;

  transition: 0.3s ease;

  font-size: 15px;
}

.footer-column a:hover {
  color: #00d2a8;

  transform: translateX(4px);
}

/* ICONS */

.footer-column h4 i {
  color: #00d2a8;

  margin-right: 8px;
}

.footer-column a i {
  margin-right: 10px;

  color: #00d2a8;

  font-size: 12px;
}

.footer-column p i {
  width: 20px;

  color: #00d2a8;
}

.footer-products span i {
  margin-right: 8px;
}

/* SOCIALS */

.footer-socials {
  display: flex;

  gap: 14px;

  margin-top: 30px;
}

.footer-socials a {
  width: 44px;

  height: 44px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #ffffff;

  transition: 0.3s;

  text-decoration: none;
}

.footer-socials a:hover {
  background: #00b894;

  transform: translateY(-4px);
}

/* BOTTOM */

.footer-bottom {
  padding-top: 26px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;

  align-items: center;

  color: rgba(255,255,255,0.55);

  font-size: 14px;
}

.footer-bottom-center {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.footer-bottom-center span {
  background: rgba(255,255,255,0.07);

  padding: 8px 14px;

  border-radius: 100px;
}

.footer-bottom i {
  margin-right: 6px;

  color: #00d2a8;
}

/* RESPONSIVE */

@media (max-width: 992px) {

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

}

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}

/* Contact page */
.contact-section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(225,29,72,0.13) 0%, transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(168,85,247,0.11) 0%, transparent 40%);
  animation: orb-drift 9s ease-in-out infinite alternate;
}

.contact-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(225,29,72,0.14);
  border-radius: var(--radius-xl);
  padding: 60px 64px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 30px 80px rgba(109,40,217,0.12);
}

.contact-card h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 16px;
}

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

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(225,29,72,0.05);
  border: 1px solid rgba(225,29,72,0.12);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: left;
  transition: all 0.25s;
}

.contact-link-item:hover {
  background: rgba(225,29,72,0.10);
  border-color: rgba(225,29,72,0.28);
}

.contact-link-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fce7f3, #f3d4fb);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-link-info strong {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-link-info span {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.2s;
}

.back-btn:hover { color: var(--blue); }

/* ── AIDO sub-pages ─────────────────────────────────────────── */
.legal-doc {
  max-width: 860px;
  margin: auto;
  padding: 80px 0 100px;
}

.legal-doc h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.legal-doc .doc-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
}

.legal-doc p, .legal-doc li {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-doc ul { padding-left: 24px; }
.legal-doc li { margin-bottom: 8px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content h1 { font-size: 52px; }
  .page-hero h1 { font-size: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  nav { display: none; }
  .hero-wrapper { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .highlight-boxes { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .product-top { grid-template-columns: 1fr; padding: 40px; }
  .gallery { padding: 0 40px 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 40px; }
  .page-hero h1 { font-size: 40px; }
  .section-header h2 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .product-top { padding: 28px; }
  .gallery { padding: 0 28px 40px; padding-top: 36px; }
  .about-content h2 { font-size: 36px; }
  .mission h2 { font-size: 38px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 38px; }
}