/* ============================================================
   DoMeZos-Ware — Main Stylesheet
   Author: Michael Bergfeld
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:       #1c3a6e;
  --primary-dark:  #0e2247;
  --accent:        #00c9a7;
  --accent-hover:  #00a88a;
  --accent2:       #00a8e8;
  --bg:            #f4f7fb;
  --surface:       #ffffff;
  --surface2:      #eef2f9;
  --text:          #1e293b;
  --text-muted:    #5e718a;
  --border:        #d8e3f0;
  --shadow-sm:     0 2px 8px rgba(28,58,110,.08);
  --shadow-md:     0 8px 32px rgba(28,58,110,.13);
  --shadow-lg:     0 20px 60px rgba(28,58,110,.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-sm { padding: 3rem 0; }

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
  letter-spacing: -.5px;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--surface2);
}
.nav-links .btn-nav {
  background: var(--primary);
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  margin-left: .5rem;
  transition: all var(--transition);
}
.nav-links .btn-nav:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,201,167,.3);
}
/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4080 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,201,167,.18);
  border: 1px solid rgba(0,201,167,.3);
  color: var(--accent);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 220px;
  background: #fff;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform var(--transition);
}
.phone-mockup:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(1deg) translateY(-8px);
}
.phone-screen {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f9 100%);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: .75rem;
}
.phone-app-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(28,58,110,.3);
}
.phone-app-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary-dark);
  text-align: center;
}
.phone-input-mock {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid var(--border);
}
.phone-btn-mock {
  width: 100%;
  height: 34px;
  background: linear-gradient(90deg, var(--primary), #2756b5);
  border-radius: 10px;
}
.phone-url-mock {
  font-size: .55rem;
  color: var(--accent2);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,201,167,.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,201,167,.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-primary-dark {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 150px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-value span { color: var(--accent); }
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .35rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: .3px;
}

/* ── Section Headers ───────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 520px;
  font-size: 1.05rem;
  margin-top: .5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p { margin: .5rem auto 0; }

/* ── About Section ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.about-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(28,58,110,.25);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; padding-bottom: 0; }
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent);
  white-space: nowrap;
  padding-top: .15rem;
  min-width: 42px;
}
.timeline-content h4 {
  font-size: .95rem;
  margin-bottom: .2rem;
  color: var(--primary-dark);
}
.timeline-content p {
  font-size: .85rem;
  margin: 0;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.skill-tag {
  background: var(--surface2);
  color: var(--primary);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ── Product Cards ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.product-card-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}
.product-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.product-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.2);
}
.product-card-header h3 { color: #fff; margin-bottom: .35rem; }
.product-card-header p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.product-card-body { padding: 1.75rem 2rem; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.feature-check {
  width: 20px;
  height: 20px;
  background: rgba(0,201,167,.12);
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.feature-item span {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.product-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.product-link {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
}
.product-link-primary {
  background: var(--primary);
  color: #fff;
}
.product-link-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.product-link-secondary {
  background: var(--surface2);
  color: var(--primary);
  border: 1px solid var(--border);
}
.product-link-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Services ──────────────────────────────────────────────── */
.services-bg {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.services-bg::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,.12) 0%, transparent 70%);
}
.services-bg .section-tag { color: var(--accent); }
.services-bg .section-tag::before { background: var(--accent); }
.services-bg h2 { color: #fff; }
.services-bg .section-header p { color: rgba(255,255,255,.7); max-width: 100%; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(0,201,167,.4);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .6rem;
}
.service-card p { color: rgba(255,255,255,.65); font-size: .88rem; }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--primary-dark); }
.cta-inner p { max-width: 480px; }

/* ── Privacy Page ──────────────────────────────────────────── */
.content-page {
  padding: 4rem 0 6rem;
}
.content-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
}
.content-card h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--primary-dark);
}
.content-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.content-card p { color: var(--text); }
.content-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
}
.content-card ul li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text);
}
.content-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.privacy-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(0,201,167,.08), rgba(0,168,232,.08));
  border: 1.5px solid rgba(0,201,167,.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.privacy-badge-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.privacy-badge-text h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: .2rem;
}
.privacy-badge-text p { font-size: .88rem; margin: 0; }

/* ── Snote Page ────────────────────────────────────────────── */
.snote-hero {
  background: linear-gradient(135deg, var(--primary-dark), #1a4080);
  padding: 4rem 0 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.snote-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,201,167,.15) 0%, transparent 60%);
}
.snote-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.snote-hero h1 { color: #fff; }
.snote-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.snote-badge-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.snote-badge {
  background: rgba(0,201,167,.18);
  border: 1px solid rgba(0,201,167,.3);
  color: var(--accent);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.snote-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.snote-feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.snote-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.snote-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(28,58,110,.1), rgba(0,168,232,.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.snote-feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.snote-feature-card p { font-size: .88rem; }
.how-it-works {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 2rem;
}
.step-item {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
}
.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}
.step-item h4 { font-size: .95rem; margin-bottom: .4rem; }
.step-item p { font-size: .82rem; margin: 0; }

/* ── Page Hero (sub-pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3.5rem 0;
  color: #fff;
  margin-bottom: 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-hero p { color: rgba(255,255,255,.7); margin: .5rem 0 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.breadcrumb a, .breadcrumb span {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; margin: 0; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-1 { animation: fadeInUp .6s ease both; }
.anim-2 { animation: fadeInUp .6s .15s ease both; }
.anim-3 { animation: fadeInUp .6s .3s ease both; }
.anim-4 { animation: fadeInUp .6s .45s ease both; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .snote-hero-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item:not(:last-child)::after { display: none; }
}
@media (max-width: 660px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  .stat-item:last-child { border-bottom: none; }
  .cta-inner { flex-direction: column; }
  .content-card { padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 1.5rem; }
}
