/* ═══════════════════════════════════════════
   ROOT & RESET
═══════════════════════════════════════════ */
:root {
  --teal: #00e5be;
  --teal-light: #33edd0;
  --teal-glow: rgba(0, 229, 190, 0.18);
  --teal-dim: rgba(0, 229, 190, 0.08);
  --bg: #07090a;
  --bg2: #0c1012;
  --bg3: #111618;
  --card: #131a1d;
  --border: rgba(0, 229, 190, 0.14);
  --border2: rgba(255, 255, 255, 0.06);
  --text: #deeae8;
  --muted: #637d79;
  --white: #ffffff;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════
     SCROLLBAR
  ═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
     SELECTION
  ═══════════════════════════════════════════ */
::selection {
  background: var(--teal);
  color: var(--bg);
}

/* ═══════════════════════════════════════════
     NOISE TEXTURE
  ═══════════════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ═══════════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--bg);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-text span {
  color: var(--teal);
}

nav ul {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

nav ul a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

nav ul a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

nav ul a:hover {
  color: var(--teal);
}
nav ul a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.15s;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}

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

/* ═══════════════════════════════════════════
     SECTION LAYOUT
  ═══════════════════════════════════════════ */
section {
  width: 100%;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

/* Radial background glow */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 65%;
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(0, 229, 190, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Diagonal stripe accent */
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 30%,
    var(--teal) 50%,
    var(--border) 70%,
    transparent 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 1rem 0.3rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s 0.1s both;
}

.hero-badge-dot {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.8s 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.8s 0.4s both;
}

.hero-actions .btn-primary {
  font-size: 0.88rem;
  padding: 0.85rem 2rem;
}

/* ── Hero Image Panel ── */
.hero-visual {
  position: relative;
  animation: fadeIn 1s 0.5s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 190, 0.05);
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

/* Overlay gradient on image */
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 190, 0.06) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

/* Floating card on image */
.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: rgba(12, 16, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  z-index: 2;
  animation: fadeUp 1s 0.8s both;
}

.hero-float-title {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.hero-float-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-float-dots {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.7rem;
}

.hero-float-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-float-dots span:nth-child(2) {
  opacity: 0.5;
}
.hero-float-dots span:nth-child(3) {
  opacity: 0.25;
}

/* Corner decorations */
.corner-tl,
.corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}

.corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
}

.corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
}

/* ═══════════════════════════════════════════
     FEATURES
  ═══════════════════════════════════════════ */
#features {
  background: var(--bg2);
  padding: 6rem 0;
  position: relative;
}

#features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 229, 190, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 229, 190, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.features-header .section-label {
  justify-content: center;
}

.features-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--card);
  padding: 2.2rem 1.8rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  background: var(--bg3);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.3rem;
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.feature-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
     ABOUT / PRODUCT
  ═══════════════════════════════════════════ */
#about {
  padding: 7rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.about-image-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 229, 190, 0.08),
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* Floating second image */
.about-image-float {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--teal);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.about-image-float img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-content {
  padding-right: 1rem;
}

.about-content .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 1.4rem;
}

.about-content .section-body {
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
     SMART CHAIR
  ═══════════════════════════════════════════ */
#chair {
  background: var(--bg2);
  padding: 7rem 0;
}

.chair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.chair-content .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.chair-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.chair-content .section-body {
  margin-bottom: 2rem;
}

.chair-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.chair-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: var(--teal-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.chair-feat-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.chair-feat-text {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.chair-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.chair-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.chair-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 10, 0.6) 0%, transparent 50%);
}

/* ═══════════════════════════════════════════
     STATS
  ═══════════════════════════════════════════ */
#stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 190, 0.06) 0%,
    transparent 65%
  );
}

.stats-label {
  text-align: center;
  margin-bottom: 3rem;
}
.stats-label .section-label {
  justify-content: center;
}
.stats-label .section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.stats-image-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  filter: saturate(0.5) brightness(0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--card);
  position: relative;
  transition: background var(--transition);
}

.stat-card:hover {
  background: var(--bg3);
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: var(--border);
}

.stat-card:last-child::after {
  display: none;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
     CTA BAND
  ═══════════════════════════════════════════ */
#cta-band {
  background: var(--bg2);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.5);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 9, 10, 0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(7, 9, 10, 0.85);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(2);
}

.cta-content .section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 1.2rem;
}

.cta-content .section-body {
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
     DEMO FORM
  ═══════════════════════════════════════════ */
#demo-form {
  padding: 7rem 0;
  position: relative;
}

#demo-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 229, 190, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 229, 190, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header .section-label {
  justify-content: center;
}
.form-header .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.field:last-of-type {
  margin-bottom: 0;
}

label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(99, 125, 121, 0.5);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 229, 190, 0.4);
  background: rgba(0, 229, 190, 0.04);
  box-shadow: 0 0 0 4px rgba(0, 229, 190, 0.07);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23637d79'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: #0c1012;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input.err,
select.err,
textarea.err {
  border-color: rgba(255, 80, 80, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 80, 80, 0.07);
}

.err-msg {
  font-size: 0.67rem;
  color: #ff6060;
  display: none;
  letter-spacing: 0.03em;
}

.has-err .err-msg {
  display: block;
}

.form-submit-wrap {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.btn-form {
  width: 100%;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--teal);
  border: none;
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform 0.15s;
}

.btn-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s;
}

.btn-form:hover::before {
  left: 100%;
}
.btn-form:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.btn-form:active {
  transform: translateY(0);
}

.form-privacy {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show {
  display: block;
}

.success-checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--teal);
}

.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.footer-contact-icon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  font-size: 0.8rem;
  padding: 0.6rem 0.9rem;
  margin: 0;
}

.footer-newsletter .btn-primary {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  white-space: nowrap;
  border-radius: var(--radius);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: border-color var(--transition), color var(--transition),
    background var(--transition);
}

.social-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-dim);
}
.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  flex-direction: column;
}
.foot-logo-mark img {
  max-height: 70px;
}
.nav-logo-img img {
  max-height: 50px;
}
/* ═══════════════════════════════════════════
     ANIMATIONS
  ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
     MOBILE
  ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .chair-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-float-card {
    left: 0;
  }

  .about-image-float {
    display: none;
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  nav ul {
    display: none;
  }
}

@media (max-width: 600px) {
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: 2rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

#navbar{
  display: flex !important;
}

