/* Smart Delivery — Landing Styles */

:root {
  --gold: #C9A227;
  --gold-light: #E8D48B;
  --gold-dark: #9A7B1A;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --charcoal: #1A1A1A;
  --charcoal-soft: #4A4A4A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 12px 48px rgba(26, 26, 26, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

/* ── Layout ── */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.1rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--charcoal);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ── Hero ── */

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
  color: var(--white);
}

/* ── Features ── */

.features {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--charcoal-soft);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-dark);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* ── About ── */

.about {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.about__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about__content p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: 1rem;
}

/* ── Footer ── */

.footer {
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--gold-dark);
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* ── Delete Account Page ── */

.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--charcoal-soft);
  max-width: 540px;
  margin: 0 auto;
}

.delete-content {
  padding: 2rem 0 4rem;
}

.delete-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  max-width: 680px;
  margin: 0 auto;
}

.delete-card h2,
.policy-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.delete-card h3,
.policy-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--charcoal);
}

.delete-card p,
.delete-card li,
.policy-card p,
.policy-card li {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.policy-content {
  padding: 2rem 0 4rem;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  max-width: 720px;
  margin: 0 auto;
}

.policy-card ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.policy-card a {
  font-weight: 500;
}

.delete-request-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--cream-dark);
}

.delete-request-box ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.delete-request-box p:last-child {
  margin-bottom: 0;
}

.delete-steps {
  list-style: none;
  counter-reset: step;
  margin: 1.5rem 0;
}

.delete-steps li {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.delete-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.delete-warning {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}

.delete-warning p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.delete-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.delete-contact a {
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}

.back-link:hover {
  color: var(--gold-dark);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero__logo {
    width: 96px;
    height: 96px;
  }

  .delete-card,
  .policy-card {
    padding: 1.75rem;
  }
}
