/* =============================================
   OkiPoki.net — Main Stylesheet
   Mobile-First, Premium Design
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --color-bg:         #0a0e1a;
  --color-surface:    #111827;
  --color-surface-2:  #1a2236;
  --color-border:     #1e2d45;
  --color-accent:     #f5a623;
  --color-accent-2:   #e8376b;
  --color-text:       #e2e8f0;
  --color-text-muted: #7a8ba8;
  --color-white:      #ffffff;

  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(245,166,35,.15);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
  --header-h: 68px;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* ---- Utility ---- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(245,166,35,.12);
  color: var(--color-accent);
  border: 1px solid rgba(245,166,35,.25);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #e8951a);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,.5); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--color-text);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10,14,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.site-header.scrolled { background: rgba(10,14,26,.98); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--color-white);
}
.logo-dot { color: var(--color-accent); }

.nav-desktop { display: none; }

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-desktop a {
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--color-text); background: rgba(255,255,255,.07); }

.header-cta { display: none; }

.btn-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.btn-menu span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.btn-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu.open span:nth-child(2) { opacity: 0; }
.btn-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-bg);
  z-index: 999;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile a {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--color-text); background: var(--color-surface); }

/* ---- Main content ---- */
.site-main { padding-top: var(--header-h); min-height: 80vh; }

/* ---- Hero section ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1a2e 60%, #1a0d2e 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,166,35,.12) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero-image-wrap {
  position: relative;
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.hero-image-wrap img { width: 100%; object-fit: cover; max-height: 400px; }

/* ---- Section ---- */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-surface); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.section-header p { color: var(--color-text-muted); max-width: 560px; margin-inline: auto; }

/* ---- Cards grid ---- */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(245,166,35,.3);
}

.card-image { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 1.5rem; }
.card-cat {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-accent);
  margin-bottom: .6rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.4;
}
.card-title a:hover { color: var(--color-accent); }
.card-excerpt { font-size: .9rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: var(--color-text-muted);
}

/* ---- Features / Services ---- */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(245,166,35,.35);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,.1);
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.feature-card p { font-size: .9rem; color: var(--color-text-muted); }

/* ---- Stats ---- */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .85rem; color: var(--color-text-muted); margin-top: .25rem; }

/* ---- Team ---- */
.team-grid { display: grid; gap: 1.5rem; }
.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: 1rem;
  border: 3px solid var(--color-accent);
}
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.team-role { font-size: .85rem; color: var(--color-accent); font-weight: 600; margin-bottom: .75rem; }
.team-bio { font-size: .875rem; color: var(--color-text-muted); }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1000 0%, #2a1a00 50%, #1a0a20 100%);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--color-text-muted); margin-bottom: 2rem; }

/* ---- Blog ---- */
.blog-layout {
  display: grid;
  gap: 2rem;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-post {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.sidebar-post-title { font-size: .85rem; font-weight: 600; line-height: 1.4; }
.sidebar-post-title a:hover { color: var(--color-accent); }
.sidebar-post-date { font-size: .75rem; color: var(--color-text-muted); margin-top: .3rem; }

.category-pill {
  display: inline-flex;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  margin: .25rem;
  transition: border-color var(--transition), color var(--transition);
}
.category-pill:hover,
.category-pill.active { border-color: var(--color-accent); color: var(--color-accent); }

/* ---- Search form ---- */
.search-form {
  display: flex;
  gap: .5rem;
}
.search-input {
  flex: 1;
  padding: .7rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: .9rem;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--color-accent); }
.search-btn {
  padding: .7rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  cursor: pointer;
  font-size: .85rem;
  transition: background var(--transition);
}
.search-btn:hover { background: #e8951a; }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.page-link:hover,
.page-link.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .sep { opacity: .4; }
.breadcrumbs .current { color: var(--color-text); }

/* ---- Post single ---- */
.post-header { margin-bottom: 2rem; }
.post-title { font-size: clamp(1.6rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.post-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}
.post-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.3rem; margin: 2rem 0 .75rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .5rem; }
.post-content a { color: var(--color-accent); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.post-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.post-content th, .post-content td {
  padding: .75rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
}
.post-content th {
  background: var(--color-surface-2);
  font-weight: 700;
}

/* ---- Contact form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--color-text-muted);
}
.form-control {
  width: 100%;
  padding: .9rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--color-accent); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-error {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(232,55,107,.12);
  border: 1px solid rgba(232,55,107,.3);
  color: #f87171;
  font-size: .9rem;
}
.form-success {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(52,211,153,.1);
  border: 1px solid rgba(52,211,153,.3);
  color: #6ee7b7;
  text-align: center;
}

/* ---- Legal pages ---- */
.legal-content {
  max-width: 800px;
  margin-inline: auto;
}
.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.legal-content .legal-date { color: var(--color-text-muted); font-size: .875rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; color: var(--color-accent); }
.legal-content p { margin-bottom: 1.25rem; color: var(--color-text-muted); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-content ul li { color: var(--color-text-muted); margin-bottom: .4rem; }

/* ---- Sitemap page ---- */
.sitemap-grid { display: grid; gap: 1.5rem; }
.sitemap-section { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem; }
.sitemap-section h3 { color: var(--color-accent); font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.sitemap-section ul { display: flex; flex-direction: column; gap: .5rem; }
.sitemap-section a { font-size: .9rem; color: var(--color-text-muted); display: flex; align-items: center; gap: .5rem; transition: color var(--transition); }
.sitemap-section a:hover { color: var(--color-accent); }

/* ---- 404 ---- */
.page-404-content { text-align: center; padding: 6rem 1rem; }
.page-404-content h1 { font-size: clamp(4rem, 15vw, 8rem); line-height: 1; margin-bottom: 1rem; }
.page-404-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.page-404-content p { color: var(--color-text-muted); margin-bottom: 2rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--color-text-muted); max-width: 300px; margin-bottom: 1.5rem; }

.footer-heading {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-accent); }

.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(245,166,35,.1);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-muted);
}
.footer-bottom a { color: var(--color-text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin-inline: auto;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: .875rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .65rem 1.4rem; font-size: .875rem; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: .75rem; }
.page-hero p { color: var(--color-text-muted); max-width: 540px; margin-inline: auto; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--color-border); margin: 0; }

/* =====================================
   Responsive — Tablet (≥ 640px)
   ===================================== */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================
   Responsive — Desktop (≥ 1024px)
   ===================================== */
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .btn-menu { display: none; }
  .header-cta { display: flex; gap: .75rem; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr 320px; }
  .sitemap-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 5.5rem 0; }
  .hero { padding: 6rem 0 7rem; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp .55s cubic-bezier(.4,0,.2,1) both;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ---- Responsive image for webp ---- */
.img-responsive { width: 100%; height: auto; }
