/*
Theme Name: Apexx Solutions
Theme URI: https://goapexx.com
Author: Apexx Solutions
Author URI: https://goapexx.com
Description: A bold, modern marketing agency theme inspired by Hulio. Light-first design with massive typography, generous whitespace, and green accents.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apexx
*/

/* ============================================
   APEXX SOLUTIONS — Merged v4 Stylesheet
   Combined: Original structure + Hulio design
   ============================================ */

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

:root {
  /* === Original Variables (REQUIRED for template compatibility) === */
  --green: #CAFF4D;
  --green-dark: #8BBF00;
  --green-dim: #CAFF4D22;
  --green-glow: #CAFF4D15;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-border: #1A1A1A;
  --dark-border-hover: #2A2A2A;

  /* Light palette (primary in Hulio style) */
  --light: #FAFAFA;
  --light-card: #FFFFFF;
  --light-border: #EBEBEA;
  --light-text: #0A0A0A;
  --light-sub: #666666;

  --gray: #888888;
  --gray-light: #AAAAAA;
  --white: #FFFFFF;
  --off-white: #F5F5F5;

  /* === New Hulio Variables === */
  --blue-dot: #4169E1;
  --lime-green: #D0FF00;
  --light-bg: #F3F5F8;

  /* Typography & Spacing */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--light-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography (Hulio: very large, heavy, black) --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; color: var(--light-text); }
h1 { font-size: clamp(3rem, 7.5vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 700; }
p { color: var(--light-sub); line-height: 1.7; font-size: 1rem; }
.text-green { color: var(--green-dark); }
.text-center { text-align: center; }

/* --- Dark section overrides (reverse: dark bg) --- */
.section-dark {
  background: var(--dark);
  color: var(--off-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--off-white); }
.section-dark p { color: var(--gray-light); }
.section-dark .text-green { color: var(--green); }
.section-dark .badge {
  background: var(--green-dim);
  border-color: var(--green-glow);
  color: var(--green);
}
.section-dark .badge::before { background: var(--green); }
.section-dark .card {
  background: var(--dark-card);
  border-color: var(--dark-border);
  box-shadow: none;
}
.section-dark .card:hover {
  border-color: var(--dark-border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.section-dark .card h3 { color: var(--off-white); }
.section-dark .card p { color: var(--gray-light); }
.section-dark .card-icon { background: var(--green-dim); }
.section-dark .btn-outline {
  color: var(--off-white);
  border-color: var(--dark-border-hover);
}
.section-dark .btn-outline:hover {
  border-color: var(--gray);
  background: rgba(255,255,255,0.03);
}
.section-dark .step p { color: var(--gray-light); }
.section-dark .step::after { background: var(--dark-border); }

/* --- Badge / Pill (Hulio: clean, uppercase) --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: #CAFF4D18;
  border: 1px solid #CAFF4D30;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Section Label (Hulio NEW: blue dot + gray text, no background) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-sub);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue-dot);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Buttons (Hulio: dark fill, outline, clean) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.btn-green {
  background: var(--green);
  color: var(--dark);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(202, 255, 77, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--light-text);
  border: 1.5px solid var(--light-border);
}
.btn-outline:hover {
  border-color: var(--dark);
  background: var(--off-white);
}
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn svg, .btn .arrow { transition: transform var(--transition); }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }

/* Dark section button overrides */
.section-dark .btn-primary { background: var(--green); color: var(--dark); }
.section-dark .btn-primary:hover { box-shadow: 0 12px 40px rgba(202, 255, 77, 0.25); }
.section-dark .btn-outline { color: var(--off-white); border-color: var(--dark-border-hover); }
.section-dark .btn-outline:hover { border-color: var(--gray); background: rgba(255,255,255,0.03); }

/* --- Navigation (Hulio: light, clean, minimal) --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--light-border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--light-text);
  letter-spacing: -0.02em;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-sub);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--light-text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}
.nav-cta { margin-left: 12px; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--light-text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--light-text); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--green-dark); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--light-text); font-size: 2rem; cursor: pointer; }

/* --- Hero (Hulio: light bg, massive text, split with image box) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: var(--white);
}
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-text .badge { margin-bottom: 32px; }
.hero-text .section-label { margin-bottom: 32px; }
.hero-text h1 {
  margin-bottom: 28px;
  color: var(--light-text);
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--light-sub);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image box (Hulio-style: distinctive shaped container) */
.hero-image-wrapper {
  position: relative;
}
.hero-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero-image-box img,
.hero-image-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Decorative floating elements like Hulio */
.hero-float-badge {
  position: absolute;
  bottom: 15%;
  left: -24px;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(202,255,77,0.3);
}
.hero-float-badge svg {
  width: 48px;
  height: 48px;
}
.hero-float-badge .rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 15s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.hero-float-square {
  position: absolute;
  bottom: 5%;
  left: 16px;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(202,255,77,0.2);
}

/* --- Marquee (Hulio: bold, green background strip) --- */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  background: var(--green);
}
.marquee { display: flex; gap: 48px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee span { font-size: 1.1rem; font-weight: 800; color: var(--dark); flex-shrink: 0; letter-spacing: -0.01em; text-transform: uppercase; }
.marquee span.dot { opacity: 0.3; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections (Hulio: generous padding) --- */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .badge { margin-bottom: 20px; }
.section-header .section-label { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* --- Cards (Hulio: clean, white/light, larger radius) --- */
.card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-2xl);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: #D0D0CD;
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
}
.card-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CAFF4D20;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.card h3 { margin-bottom: 12px; color: var(--light-text); }
.card p { font-size: 0.93rem; }

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

/* Dark card variant */
.section-dark .card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.section-dark .card:hover {
  border-color: var(--dark-border-hover);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.section-dark .card h3 { color: var(--off-white); }
.section-dark .card p { color: var(--gray-light); }

/* --- Text Grid (NEW Hulio: 3-column text blocks) --- */
.text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.text-grid-3 { grid-template-columns: repeat(3, 1fr); }
.text-block {
  padding: 0;
}
.text-block h3 {
  margin-bottom: 16px;
  color: var(--off-white);
}
.text-block p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* --- Service List (NEW: horizontal rows with numbers) --- */
.service-list {
  list-style: none;
  margin-top: 32px;
}
.service-list-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--dark-border);
}
.service-list-item:last-child {
  border-bottom: none;
}
.service-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
}
.service-desc {
  font-size: 0.93rem;
  color: var(--gray-light);
  text-align: right;
  line-height: 1.6;
}
.section-dark .service-list-item {
  border-bottom-color: var(--dark-border);
}

/* --- Link Arrow (NEW: inline arrow transition) --- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--light-sub);
  font-weight: 500;
  transition: all var(--transition);
}
.link-arrow:hover {
  color: var(--light-text);
  gap: 12px;
}
.link-arrow svg,
.link-arrow .arrow {
  transition: transform var(--transition);
}
.link-arrow:hover svg,
.link-arrow:hover .arrow {
  transform: translateX(4px);
}

/* --- Process / Steps --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.step { text-align: center; counter-increment: step; position: relative; }
.step-number {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: var(--white);
  font-weight: 800; font-size: 1.15rem;
  border-radius: 50%; margin: 0 auto 20px;
}
.section-dark .step-number {
  background: var(--green);
  color: var(--dark);
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.88rem; color: var(--light-sub); }
.step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 1px;
  background: var(--light-border);
}
.section-dark .step::after { background: var(--dark-border); }
.step:last-child::after { display: none; }

/* --- CTA Banner (works in both light and dark sections) --- */
.cta-banner {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-2xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: var(--green);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.06;
}
.cta-banner h2 { margin-bottom: 16px; position: relative; z-index: 1; color: var(--off-white); }
.cta-banner p { margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; font-size: 1.05rem; color: var(--gray-light); }
.cta-banner .text-green { color: var(--green); }
.cta-banner .btn { position: relative; z-index: 1; }
.cta-banner .btn-primary { background: var(--green); color: var(--dark); }

/* --- Pricing Cards (HULIO: light bg, dark text on light sections) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--light-bg);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-2xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(202, 255, 77, 0.08);
}
.pricing-card.featured:hover {
  box-shadow: 0 24px 64px rgba(202, 255, 77, 0.12);
}
.pricing-card .featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-tier-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-text);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-sub);
}
.pricing-who {
  font-size: 0.88rem;
  color: var(--light-sub);
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-border);
  line-height: 1.6;
}
.pricing-scope-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 14px;
}
.pricing-feature {
  padding: 5px 0;
  color: var(--light-sub);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.pricing-feature .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-value {
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
  margin-top: 24px;
}
.pricing-value p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--light-sub);
  line-height: 1.6;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}
/* Featured card: green CTA button */
.pricing-card.featured .btn-primary {
  background: var(--green);
  color: var(--dark);
}
.pricing-card.featured .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(202, 255, 77, 0.3);
}
/* Non-featured card: black outline button */
.pricing-card:not(.featured) .btn-outline {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.pricing-card:not(.featured) .btn-outline:hover {
  border-color: var(--dark);
  background: rgba(10, 10, 10, 0.8);
}

/* --- Footer (Hulio: dark, clean, minimal) --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--off-white); }
.footer-brand .nav-logo img { filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 14px; font-size: 0.88rem; max-width: 280px; color: var(--gray); }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--gray-light); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--gray);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--gray-light);
  transition: all var(--transition);
  font-size: 0.82rem;
}
.footer-socials a:hover { border-color: var(--green); color: var(--green); background: rgba(202,255,77,0.05); }

/* --- Ghost Text (NEW: huge semi-transparent footer text) --- */
.ghost-text-content {
  position: relative;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  text-stroke: 1px rgba(255, 255, 255, 0.06);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  overflow: hidden;
  padding: 20px 0;
  margin: 40px 0 0 0;
}

/* --- Page Header (inner pages — Hulio: light, clean, bold) --- */
.page-header {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.page-header .badge { margin-bottom: 20px; }
.page-header .section-label { margin-bottom: 20px; }
.page-header h1 { margin-bottom: 16px; position: relative; color: var(--light-text); }
.page-header p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; line-height: 1.75; }

/* --- Contact Form (light background variant) --- */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--light-text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  color: var(--light-text);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-dot);
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Dark form variant (original) */
.form-dark .form-group label { color: var(--gray-light); }
.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-group textarea {
  background: var(--dark-card);
  border-color: var(--dark-border);
  color: var(--off-white);
}
.form-dark .form-group input:focus,
.form-dark .form-group select:focus,
.form-dark .form-group textarea:focus { border-color: var(--green); }

/* Light form variant */
.form-light .form-group label { color: var(--light-sub); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border-color: var(--light-border);
  color: var(--light-text);
}
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus { border-color: var(--green-dark); }

/* --- Service detail rows --- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 32px;
}
.service-row.reverse .service-visual { order: -1; }
.service-visual {
  background: var(--off-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-2xl);
  padding: 56px;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-visual svg { opacity: 0.3; margin-bottom: 16px; }
.service-visual p { font-size: 0.85rem; color: var(--light-sub); }
.service-check { padding: 6px 0; color: var(--light-sub); display: flex; align-items: center; gap: 10px; font-size: 0.93rem; }
.service-check .check { color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .text-grid, .text-grid-3 { grid-template-columns: 1fr; }
  .service-list-item { grid-template-columns: 60px 1fr; }
  .service-desc { text-align: left; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrapper { max-width: 400px; margin: 0 auto; }
  .hero { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse .service-visual { order: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .text-grid, .text-grid-3 { grid-template-columns: 1fr; }
  .service-list-item { grid-template-columns: 1fr; gap: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 140px 24px 60px; min-height: auto; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 80px 0; }
  .cta-banner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 130px 24px 60px; }
  .hero-float-badge { display: none; }
  .hero-float-square { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
  .ghost-text-content { font-size: clamp(2.5rem, 10vw, 6rem); }
}

/* --- Animations (smooth, subtle) --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
