/* =========================================================
   WebXPro — Modern Redesign
   Design system: navy/black + orange, Inter + Plus Jakarta Sans
   ========================================================= */

:root {
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-hand: 'Caveat', 'Comic Sans MS', cursive;

  --primary: #f97316;
  --primary-2: #fb923c;
  --accent: #f97316;
  --grad: linear-gradient(120deg, #ea580c 0%, #f97316 50%, #fb923c 120%);
  --grad-dark: linear-gradient(135deg, #0b1120 0%, #141f35 60%, #1e293b 120%);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;

  /* light theme */
  --bg: #f8fafc;
  --bg-tint: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(249, 115, 22, 0.30);
  --header-bg: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] {
  --bg: #0b1120;
  --bg-tint: #0f172a;
  --surface: #111a2e;
  --surface-2: #1a2540;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #1e293b;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 60px -20px rgba(249, 115, 22, 0.30);
  --header-bg: rgba(11, 17, 32, 0.8);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -2px 0 rgba(0, 0, 0, 0.28);
}
.btn--primary:hover {
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.55),
    inset -1px -2px 0 rgba(0, 0, 0, 0.28);
}
.btn--primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 1px 1px 3px rgba(0, 0, 0, 0.35),
    inset -1px -1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--light { background: #fff; color: #0f172a; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }

.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-light:hover { border-color: #fff; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }

.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; line-height: 1.1; }
.brand__x { color: var(--primary); display: inline-block; font-size: 1.12em; animation: xPulse 2.6s ease-in-out infinite; }
@keyframes xPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(249, 115, 22, 0); transform: scale(1); }
  50% { text-shadow: 0 0 14px rgba(249, 115, 22, 0.65); transform: scale(1.08); }
}
.brand__tag { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: 14.5px;
  color: var(--text-muted); transition: color 0.15s ease, background 0.15s ease;
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.icon-btn:hover { border-color: var(--primary); }

.icon-sun, .icon-moon { transition: opacity 0.2s; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

.lang-switch { display: flex; background: var(--surface-2); border-radius: 999px; padding: 3px; }
.lang-btn {
  border: none; background: transparent; font-weight: 600; font-size: 13px;
  padding: 7px 13px; border-radius: 999px; cursor: pointer; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active { background: var(--grad); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(249, 115, 22, 0.14), transparent 60%),
    radial-gradient(500px 400px at 10% 20%, rgba(15, 23, 42, 0.10), transparent 60%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1.3fr; gap: 28px; align-items: center; }

.hero__arrow {
  position: absolute; left: 40%; top: 30%;
  width: clamp(120px, 20vw, 300px);
  z-index: 2; pointer-events: none;
  transform: rotate(-6deg);
  filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.35));
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--text-muted);
  box-shadow: var(--shadow);
}
.pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(249,115,22,0.2); animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.2); opacity: 1; }
  50% { box-shadow: 0 0 0 10px rgba(249,115,22,0.06), 0 0 14px 3px rgba(249,115,22,0.55); }
}

.hero__title {
  font-family: var(--font-hand); font-size: clamp(3.2rem, 7.2vw, 5.5rem);
  font-weight: 700; line-height: 1.02; letter-spacing: 0.01em; margin: 22px 0 8px; padding-bottom: 0;
}
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero__title-dark { color: var(--text); }
.hero__title-line { display: block; }
.hero__code { position: relative; display: inline-block; }
.gradient-text--orange { color: #f97316; }

.hero__sub { color: var(--text-muted); font-size: 17px; max-width: 520px; }

.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-head); font-size: 30px; font-weight: 800; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--text-muted); font-size: 14px; }

/* Laptop + phone mockups */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: flex-end; padding: 0; }

.hero__laptop-img {
  width: min(840px, 100%); height: auto; display: block;
  border-radius: 16px; mix-blend-mode: multiply; transform: translateX(44px);
}
[data-theme="dark"] .hero__laptop-img { mix-blend-mode: normal; }

.laptop-mockup { position: relative; width: min(460px, 100%); }
.laptop__screen {
  position: relative;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 0;
  box-shadow: var(--shadow-lg);
}
.laptop__screen::before {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; background: #334155; border-radius: 50%;
}
.laptop__display {
  position: relative; border-radius: 10px 10px 0 0; height: 250px; overflow: hidden;
  background: #0f172a center top / cover no-repeat;
  background-image: url('../Assets/Laptop_h.png');
}
.laptop__chrome { position: absolute; top: 0; left: 0; right: 0; height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: rgba(15, 23, 42, 0.55); }
.laptop__chrome i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.55); }
.laptop__chrome span { margin-left: 10px; flex: 1; height: 12px; border-radius: 6px; background: rgba(255,255,255,0.25); }
.laptop__base {
  height: 14px; background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 2px 2px 16px 16px; margin: 0 -20px; position: relative;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.5);
}
.laptop__base::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 7px; background: #0b1120; border-radius: 0 0 9px 9px;
}

.phone-mockup {
  width: 270px; height: 540px; border-radius: 42px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  border: 8px solid #1e293b; box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-mockup::after { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: #0b1120; border-radius: 999px; }
.phone-mockup__screen { position: absolute; inset: 40px 8px 8px 8px; border-radius: 24px; overflow: hidden; padding: 40px 18px 18px; background: var(--grad-dark); }
.pm-logo { width: 46px; height: 46px; background: rgba(255,255,255,0.95); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: var(--primary); margin-bottom: 22px; }
.pm-bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.55); margin-bottom: 10px; }
.pm-bar--1 { width: 60%; }
.pm-bar--2 { width: 85%; }
.pm-bar--3 { width: 45%; margin-bottom: 24px; }
.pm-chart { display: flex; align-items: flex-end; gap: 10px; height: 220px; }
.pm-chart i { flex: 1; background: rgba(255,255,255,0.85); border-radius: 8px 8px 0 0; }

.phone-mockup--small {
  position: absolute; right: -12px; bottom: -34px; z-index: 2;
  width: 138px; height: 276px; border-radius: 24px; border-width: 6px;
}
.phone-mockup--small::after { top: 7px; width: 44px; height: 10px; }
.phone-mockup--small .phone-mockup__screen {
  inset: 24px 5px 5px 5px; border-radius: 14px; padding: 0; overflow: hidden;
  background: #fff center top / cover no-repeat;
  background-image: url('../Assets/webxpro-screenshot-mobile.png');
}
.phone-mockup--small .pm-logo { display: none; }
.phone-mockup--small .pm-bar { display: none; }
.phone-mockup--small .pm-chart { display: none; }

.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  padding: 12px 18px; border-radius: 14px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow); animation: float 5s ease-in-out infinite; z-index: 3;
}
.float-card--a { top: 4%; left: -4%; }
.float-card--b { bottom: 8%; right: 0; animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--tint { background: var(--bg-tint); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.section__title { font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-top: 10px; }
.section__sub { color: var(--text-muted); margin-top: 12px; font-size: 16px; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.45); box-shadow: var(--shadow-lg); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: var(--surface-2); margin-bottom: 18px; }
.card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14.5px; }
.card--service p { font-size: 13.5px; }

/* Solution cards */
.solution-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px; box-shadow: var(--shadow); position: relative;
}
.solution-card--featured { background: var(--grad-dark); color: #fff; border: none; }
.solution-card--featured h3, .solution-card--featured p { color: #fff; }
.solution-card--featured p { opacity: 0.92; }
.solution-card__tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 999px; background: var(--surface-2); color: var(--primary); margin-bottom: 18px; }
.solution-card--featured .solution-card__tag { background: rgba(255,255,255,0.2); color: #fff; }
.solution-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.solution-card p { color: var(--text-muted); margin-bottom: 22px; }

.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 14.5px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(249,115,22,0.16); color: var(--primary); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.solution-card--featured .check-list li { color: #fff; }
.solution-card--featured .check-list li::before { background: rgba(255,255,255,0.2); color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 30px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.step__num { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.step h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }

/* Pricing */
.pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.pricing-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-muted); cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pricing-tab:hover { border-color: var(--primary); color: var(--text); }
.pricing-tab.active { background: var(--grad); color: #fff; border-color: transparent; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--popular { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.price-card__for { color: var(--text-muted); font-size: 13px; display: block; margin-bottom: 12px; }
.price-card__stars { font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; color: #f59e0b; }
.price-card__amount { font-family: var(--font-head); font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.price-card__amount .cur { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-right: 4px; }
.price-card__amount .plus { font-size: 20px; color: var(--primary); }
.price-card__period { color: var(--text-muted); font-size: 13.5px; font-weight: 500; margin-bottom: 14px; }
.price-card__total { display: inline-block; background: var(--surface-2); color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.price-card .check-list { flex: 1; margin-bottom: 20px; }
.price-card__fee { text-align: center; font-size: 13px; font-weight: 600; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 14px; margin-bottom: 18px; }
.price-card__fee strong { color: var(--text); }
.price-card .btn { width: 100%; }

.pricing-note { margin-top: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--shadow); }
.pricing-note h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.pricing-note ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 24px; }
.pricing-note .check-list li { font-size: 14px; }

.price-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.55); }
.price-card__cur-tip { border-bottom: 1px dashed currentColor; cursor: help; }

/* Contact / Cost Estimator */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.estimator { background: var(--grad-dark); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.estimator h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.estimator__body { color: #fff; }
.estimator__empty { opacity: 0.85; font-size: 14px; }
.estimator__plan { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.estimator__name { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.estimator__type { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }
.estimator__rows { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.estimator__row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 6px; }
.estimator__row span:last-child { font-weight: 700; }
.estimator__cta { width: 100%; margin-top: 18px; background: #fff; color: var(--primary); }
.estimator__cta:hover { box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.contact-channels { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.field input, .field select, .field textarea {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.18); }
.field textarea { resize: vertical; }
.contact-form__submit { width: 100%; }

.form-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: -6px; }

/* Blog */
.post { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__thumb { height: 170px; }
.post__thumb--1 { background: #0f172a url('../Assets/Blog_Img_1.jpg') center / cover no-repeat; }
.post__thumb--2 { background: #0f172a url('../Assets/Blog_Img_2.jpg') center / cover no-repeat; }
.post__thumb--3 { background: #0f172a url('../Assets/Blog_Img_3.jpg') center / cover no-repeat; }
.post__body { padding: 24px; }
.post__cat { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 10px; }
.post h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.post p { color: var(--text-muted); font-size: 14px; }

/* Portfolio */
.work { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work__thumb { position: relative; height: 190px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.work__thumb--1 { background: linear-gradient(135deg, #f97316, #ea580c); }
.work__thumb--2 { background: linear-gradient(135deg, #0b1120, #f97316); }
.work__thumb--3 { background: linear-gradient(135deg, #f97316, #0b1120); }
.work__thumb--4 { background: linear-gradient(135deg, #fb923c, #f97316); }
.work__thumb--5 { background: linear-gradient(135deg, #f97316, #fb923c); }
.work__thumb--6 { background: linear-gradient(135deg, #1e293b, #f97316); }
.work__thumb--img { background-size: cover; background-position: top center; }
.work__icon { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25)); transition: transform 0.25s ease; }
.work:hover .work__icon { transform: scale(1.12); }
.work__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, 0.55); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  opacity: 0; transition: opacity 0.22s ease;
}
.work:hover .work__overlay { opacity: 1; }
.work__body { padding: 22px; }
.work__cat { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 8px; }
.work h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.work p { color: var(--text-muted); font-size: 14px; }

/* CTA */
.cta { padding: 90px 0; }
.cta__inner { background: var(--grad-dark); border-radius: 28px; padding: 64px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.cta__content h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
.cta__content p { opacity: 0.92; margin: 14px auto 28px; max-width: 520px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 60px 0 0; background: var(--bg-tint); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { color: var(--text-muted); margin-top: 14px; font-size: 14px; }
.footer__brand .footer__slogan {
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-top: 14px;
}.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.footer__col a { color: var(--text-muted); font-size: 14px; transition: color 0.15s; }
.footer__col a:hover { color: var(--primary); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; color: var(--text-muted); font-size: 13.5px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px;
    gap: 4px; transform: translateY(-120%); transition: transform 0.3s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 14px; }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__arrow { display: none; }
  .hero__visual { order: -1; padding: 16px 16px 40px; }
  .hero { min-height: auto; padding-top: 96px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .grid--4, .steps { grid-template-columns: 1fr; }
  .cta__inner { padding: 40px 24px; }
  .lang-switch { order: -1; }
  .brand__tag { display: none; }
  .laptop__display { height: 200px; }
  .phone-mockup--small { width: 108px; height: 216px; right: 0; bottom: -16px; }
  .float-card { font-size: 12px; padding: 9px 13px; }
  .float-card--a { left: 0; top: 0; }
  .float-card--b { left: 0; bottom: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
