/*
Theme Name: DMC Digital Marketing Card
Theme URI: https://www.digitalmarketingcard.com
Author: DMC – Digital Marketing Card
Author URI: https://www.digitalmarketingcard.com
Description: Official WordPress theme for DMC – The Marketing Authority. Bilingual Arabic & English, RTL-ready, fully responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dmc-theme
Tags: marketing, bilingual, rtl-language-support, one-page, custom-colors, custom-logo
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --violet: #5B3FD6;
  --green: #00C97B;
  --teal: #0B2D3A;
  --white: #FAFAF8;
  --ink: #0E0E10;
  --muted: #6B7280;
  --card-bg: #F4F3EF;
  --border: rgba(91,63,214,.12);
}

/* =============================================
   RESET & BASE
   ============================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
a { text-decoration: none; }

/* RTL Arabic support */
body.rtl,
html[lang="ar"] body {
  font-family: 'Tajawal', 'DM Sans', sans-serif;
  direction: rtl;
  text-align: right;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5 {
  font-family: 'Tajawal', 'Syne', sans-serif;
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(250,250,248,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}
.nav-logo .lm {
  width: 38px;
  height: 38px;
  background: var(--violet);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .lm svg { width: 22px; height: 22px; fill: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--violet); }
.nav-cta {
  background: var(--violet);
  color: #fff !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #4931be !important; transform: translateY(-1px); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-inline-start: 1.5rem;
}
.lang-switcher a {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  padding: .3rem .6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--violet); border-color: var(--violet); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  padding-top: 90px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(91,63,214,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
html[lang="ar"] .hero::before { right: auto; left: -180px; }
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,201,123,.11) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(91,63,214,.08);
  border: 1px solid rgba(91,63,214,.2);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-tag span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--violet); }
.ug { position: relative; display: inline-block; }
.ug::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  border-radius: 4px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--violet);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(91,63,214,.3);
}
.btn-primary:hover { background: #4931be; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,63,214,.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--ink);
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--violet); color: var(--violet); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-num span { color: var(--green); }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: .25rem; }

/* Hero card */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: var(--teal);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.18);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(91,63,214,.4) 0%, transparent 70%);
  border-radius: 50%;
}
.card-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.card-kpi { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.card-kpi span { color: var(--green); }
.card-desc { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .5rem; }
.bar-row { display: flex; gap: .7rem; margin-top: 1.8rem; }
.bar-item { flex: 1; }
.bar-lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: .4rem; }
.bar-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: var(--green); }
.badges { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}
.fchip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: .8rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.fchip-1 { top: 8%; right: -9%; }
.fchip-2 { bottom: 12%; left: -7%; }
html[lang="ar"] .fchip-1 { right: auto; left: -9%; }
html[lang="ar"] .fchip-2 { left: auto; right: -7%; }
.fchip-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.fchip-1 .fchip-icon { background: rgba(0,201,123,.12); }
.fchip-2 .fchip-icon { background: rgba(91,63,214,.12); }
.fchip-top { font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700; }
.fchip-bot { font-size: .72rem; color: var(--muted); }

/* =============================================
   TICKER
   ============================================= */
.ticker { background: var(--violet); padding: .85rem 0; overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
html[lang="ar"] .ticker-track { animation-direction: reverse; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Syne', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.tdot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SECTIONS — SHARED
   ============================================= */
section { padding: 6rem 5%; }
.stag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--violet);
  margin-bottom: 1rem;
}
.stag::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
html[lang="ar"] .stag::before { order: 1; }
.stitle { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; max-width: 640px; margin-bottom: 1rem; }
.ssub { font-size: 1.02rem; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 3.5rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.svc-card:hover { border-color: rgba(91,63,214,.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(91,63,214,.1); }
.svc-card.feat {
  background: var(--violet);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-card.feat .svc-icon { background: rgba(255,255,255,.15); }
.svc-card.feat .svc-t { color: #fff; }
.svc-card.feat .svc-d { color: rgba(255,255,255,.65); }
.svc-card.feat .svc-a { color: var(--green); }
.svc-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(91,63,214,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.4rem; }
.svc-t { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.svc-d { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.svc-a { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-size: .85rem; font-weight: 600; color: var(--violet); transition: gap .2s; }
.svc-a:hover { gap: .7rem; }

/* =============================================
   RESULTS STRIP
   ============================================= */
.results-strip { background: var(--teal); padding: 4rem 5%; }
.results-inner { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; align-items: center; }
.rh { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.15; }
.rh em { font-style: normal; color: var(--green); }
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.result-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.4rem 1.2rem; }
.rnum { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--green); line-height: 1; }
.rlbl { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .5rem; line-height: 1.5; }
.rcli { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: .4rem; text-transform: uppercase; letter-spacing: .06em; }

/* =============================================
   CASE STUDIES
   ============================================= */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.case-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.cthumb { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.cthumb.vi { background: linear-gradient(135deg,#5B3FD6,#7B5FE6); }
.cthumb.te { background: linear-gradient(135deg,#0B2D3A,#1A4D66); }
.cthumb.gr { background: linear-gradient(135deg,#00A862,#00C97B); }
.ctag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.15); border-radius: 50px; padding: .25rem .75rem; font-size: .72rem; color: #fff; font-weight: 600; }
html[lang="ar"] .ctag { left: auto; right: 1rem; }
.cbody { padding: 1.4rem; }
.ccli { font-size: .75rem; color: var(--violet); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.ctitle { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.35; }
.cmet { display: flex; gap: 1.2rem; }
.mval { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--violet); }
.mkey { font-size: .72rem; color: var(--muted); margin-top: .1rem; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-sec { background: var(--card-bg); }
.ind-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 2.5rem; }
.ind-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ind-chip:hover { border-color: var(--violet); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(91,63,214,.1); }
.ind-ico { font-size: 1.8rem; margin-bottom: .6rem; }
.ind-lbl { font-size: .82rem; font-weight: 600; }

/* =============================================
   CLIENTS
   ============================================= */
.clients-wrap { text-align: center; }
.clients-wrap p { font-size: .88rem; color: var(--muted); margin-top: .5rem; margin-bottom: 2.5rem; }
.logos { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.lpill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .6rem 1.4rem;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.lpill:hover { color: var(--violet); border-color: rgba(91,63,214,.3); transform: scale(1.04); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-vis { position: relative; }
.about-img { width: 100%; border-radius: 24px; background: linear-gradient(135deg,var(--teal),#1a4d66); height: 420px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.af { position: absolute; bottom: -1.5rem; right: -1.5rem; background: #fff; border-radius: 16px; padding: 1rem 1.4rem; box-shadow: 0 8px 30px rgba(0,0,0,.12); }
html[lang="ar"] .af { right: auto; left: -1.5rem; }
.af-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--violet); line-height: 1; }
.af-txt { font-size: .78rem; color: var(--muted); }
.alist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.ali { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; line-height: 1.6; }
.ali::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: rgba(0,201,123,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C97B'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  margin: 0 5% 6rem;
  background: var(--violet);
  border-radius: 28px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
  border-radius: 50%;
}
.cta-h { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: #fff; margin-bottom: .6rem; }
.cta-p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 440px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--violet);
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ff { display: flex; flex-direction: column; gap: .4rem; }
.ff label { font-size: .82rem; font-weight: 600; }
.ff input, .ff select, .ff textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: .8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  resize: none;
}
html[lang="ar"] .ff input,
html[lang="ar"] .ff select,
html[lang="ar"] .ff textarea {
  font-family: 'Tajawal', 'DM Sans', sans-serif;
  text-align: right;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--violet); }
.ff textarea { height: 120px; }
.contact-info h3 { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.contact-info p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.cc-list { display: flex; flex-direction: column; gap: .9rem; }
.cc { display: flex; align-items: center; gap: 1rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1rem 1.2rem; }
.cc-ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(91,63,214,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cc-lbl { font-size: .75rem; color: var(--muted); }
.cc-val { font-size: .9rem; font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--teal); padding: 4rem 5% 2rem; }
.ft { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.fbrand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 240px; margin-top: 1rem; }
.flinks { display: flex; gap: .7rem; margin-top: 1.4rem; }
.flink {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.flink:hover { background: var(--violet); color: #fff; }
.fcol h4 { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .06em; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.fcol ul a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
.fcol ul a:hover { color: var(--green); }
.fb { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.fb p { font-size: .82rem; color: rgba(255,255,255,.35); }
.fb span { color: var(--green); }
.nav-logo-f { display: flex; align-items: center; gap: .6rem; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; }

/* =============================================
   ANIMATIONS
   ============================================= */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card.feat { grid-row: span 1; }
  .results-inner { grid-template-columns: 1fr; gap: 2rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .ft { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { order: -1; }
  .fchip-1, .fchip-2 { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); gap: 1.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .cases-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .ft { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
