/*
Theme Name: Sybateq
Theme URI: https://sybateq.com
Author: Sybateq LLC
Author URI: https://sybateq.com
Description: Official Sybateq website theme. Light, startup-friendly ecommerce consulting brand. Built for founders.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sybateq
Tags: one-page, business, ecommerce, consulting, startup
*/

/* ═══════════════════════════════════════════════
   SYBATEQ — Light Startup Design System
   Color palette: warm white base, orange energy,
   sky blue accent, soft grays
═══════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Logo */
  --logo-height: 44px;

  /* Brand core */
  --orange:        #F07A12;
  --orange-light:  #FEF0DE;
  --orange-mid:    #FDDCB0;
  --orange-dark:   #C45F00;

  /* Blue accent */
  --blue:          #1E6FBC;
  --blue-light:    #E8F2FB;
  --blue-mid:      #B8D8F5;
  --blue-dark:     #144E8A;

  /* Neutral palette */
  --white:         #FFFFFF;
  --bg-base:       #FAFBFF;
  --bg-alt:        #F4F7FD;
  --bg-card:       #FFFFFF;
  --border:        #E8EDF5;
  --border-light:  #F0F4FA;

  /* Text */
  --text-primary:  #1A2440;
  --text-secondary:#4A5568;
  --text-muted:    #8896A8;
  --text-on-dark:  #FFFFFF;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(30,111,188,.08), 0 1px 2px rgba(30,111,188,.05);
  --shadow-md:     0 4px 16px rgba(30,111,188,.10), 0 2px 6px rgba(30,111,188,.06);
  --shadow-lg:     0 12px 40px rgba(30,111,188,.14), 0 4px 12px rgba(30,111,188,.08);
  --shadow-orange: 0 8px 30px rgba(240,122,18,.22);

  /* Radii */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  /* Spacing */
  --section-py:    96px;

  /* Transitions */
  --transition:    0.3s ease;
  --transition-slow: 0.5s cubic-bezier(.23,1,.32,1);
}

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

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

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Utilities ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

h2 em, h1 em {
  font-style: normal;
  color: var(--blue);
}

.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #F5A623 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240,122,18,.35);
  filter: brightness(1.05);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: var(--blue-light);
  border-color: var(--blue-mid);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-right { transform: translateX(40px); }
.reveal-right.revealed { transform: none; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-slow);
}
#navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(30,111,188,.08);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: var(--logo-height);
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #F5A623 100%) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  box-shadow: var(--shadow-orange);
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,122,18,.35) !important;
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  filter: brightness(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #FAFBFF 0%, #EEF4FD 45%, #FEF3E6 100%);
  padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: var(--radius-full); }
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,122,18,.12) 0%, transparent 70%);
  top: -10%; right: 5%;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,111,188,.10) 0%, transparent 70%);
  bottom: 10%; left: -5%;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--orange-mid);
  opacity: .25;
  top: 15%; left: 55%;
  filter: blur(60px);
}
.shape-4 {
  width: 150px; height: 150px;
  background: var(--blue-mid);
  opacity: .35;
  bottom: 20%; right: 8%;
  filter: blur(50px);
}

.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeSlideDown .7s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}

.hero-headline { margin-bottom: 24px; animation: fadeSlideUp .8s .1s ease both; }
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeSlideUp .8s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp .8s .3s ease both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp .8s .4s ease both;
}
.proof-item { text-align: center; }
.proof-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}
.proof-item strong + span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}
.proof-item p { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.proof-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-visual { position: relative; z-index: 1; animation: fadeSlideUp .9s .2s ease both; }
.hero-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 200px;
  z-index: 2;
}
.floating-card i { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; }
.floating-card strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.floating-card span { font-size: .78rem; color: var(--text-muted); }
.card-top { top: -20px; left: -30px; animation: floatY 3s ease-in-out infinite; }
.card-bottom { bottom: 30px; right: -30px; animation: floatY 3s 1.5s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .08em;
  z-index: 1;
}
.scroll-arrow {
  width: 28px; height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  width: 6px; height: 6px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.about-img-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.about-badge i { font-size: 1.6rem; color: var(--blue); }
.about-badge strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.about-badge span { font-size: .78rem; color: var(--text-muted); }

.about-text-col p { color: var(--text-secondary); margin-bottom: 16px; }
.about-text-col h2 { margin-bottom: 24px; }

.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
}
.value-chip i { color: var(--blue); font-size: .8rem; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--border-light);
  position: relative;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

/* Featured card — white with orange border, elevated */
.service-card--featured {
  background: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 12px 40px rgba(240,122,18,.18), var(--shadow-md);
  transform: translateY(-8px);
}
.service-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 50px rgba(240,122,18,.25), var(--shadow-lg);
}
.service-card--featured h3    { color: var(--text-primary); }
.service-card--featured p     { color: var(--text-secondary); }
.service-card--featured li    { color: var(--text-secondary); }
.service-card--featured .service-list li i { color: var(--orange); }
.service-card--featured .service-icon {
  background: var(--orange-light);
  color: var(--orange);
}

.featured-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange) 0%, #F5A623 100%);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p  { font-size: .93rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.65; }

.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-secondary);
}
.service-list li i { color: var(--orange); font-size: .75rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   ACQUISITIONS
═══════════════════════════════════════════════ */
.acq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.acq-text h2 { margin-bottom: 20px; }
.acq-text p  { color: var(--text-secondary); margin-bottom: 16px; }

.acq-stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.stat-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1.5px solid var(--border-light);
  flex: 1; min-width: 140px;
  text-align: center;
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

.process-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-light);
}
.process-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.process-card h4 i { color: var(--orange); }

.process-steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .03em;
}
.step-content strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.step-content p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   BRAND BUILDING
═══════════════════════════════════════════════ */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.brand-text h2 { margin-bottom: 20px; }
.brand-text p  { color: var(--text-secondary); margin-bottom: 16px; }
.brand-text .btn { margin-top: 12px; }

.brand-img-wrap { position: relative; border-radius: var(--radius-xl); }
.brand-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.brand-tag {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}
.brand-tag i { color: var(--orange); }
.brand-tag-1 { top: 24px; left: -20px; animation: floatY 3.5s ease-in-out infinite; }
.brand-tag-2 { bottom: 40px; right: -20px; animation: floatY 3.5s 1.8s ease-in-out infinite; }

/* ═══════════════════════════════════════════════
   CURRENT PROJECT
═══════════════════════════════════════════════ */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.project-img-col img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.project-text h2 { margin-bottom: 20px; }
.project-text p  { color: var(--text-secondary); margin-bottom: 28px; }

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--border-light);
  margin-bottom: 28px;
}
.meta-item { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.meta-label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.meta-value { font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.status-live { display: flex; align-items: center; gap: 8px; color: #16A34A !important; }
.live-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.project-badges { display: flex; gap: 16px; }
.proj-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.proj-badge i { font-size: 1.2rem; color: var(--orange); }
.proj-badge strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text-primary); }
.proj-badge span   { font-size: .78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.section-contact { background: linear-gradient(160deg, #EEF4FD 0%, #FEF3E6 100%); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.contact-card p  { font-size: .85rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.55; }
.contact-link { font-size: .9rem; font-weight: 600; color: var(--blue); display: inline-block; line-height: 1.5; }
a.contact-link:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-light);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 28px; color: var(--text-primary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--text-primary);
  background: var(--bg-base);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,111,188,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { margin-top: 20px; font-size: 1rem; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: #F0FDF4;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1.5px solid #BBF7D0;
  color: #166534;
  font-weight: 600;
}
.form-success i { font-size: 1.2rem; color: #22C55E; }

.form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: #FFF5F5;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1.5px solid #FED7D7;
  color: #9B2C2C;
  font-weight: 600;
}
.form-error i { font-size: 1.2rem; color: #FC8181; }
.form-error a { color: var(--orange); font-weight: 700; }

/* CF7 overrides */
.wpcf7-response-output { display: none !important; }
.wpcf7-spinner { display: none !important; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--text-primary);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; color: rgba(255,255,255,.55); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
  line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════
   404 / INNER PAGES
═══════════════════════════════════════════════ */
.page-inner {
  padding: 160px 0 100px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-inner .container { max-width: 760px; }
.page-inner h1 { margin-bottom: 20px; }
.page-inner p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 32px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-container { gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .acq-grid, .brand-grid, .project-grid { gap: 48px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-slow);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; font-size: 1rem; padding: 12px 16px; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .about-grid,
  .acq-grid,
  .brand-grid,
  .project-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-col { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { transform: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }

  .card-top, .card-bottom, .brand-tag-1, .brand-tag-2 { display: none; }
  .about-badge { bottom: -12px; right: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .acq-stats { flex-direction: column; }
  .hero-social-proof { flex-wrap: wrap; gap: 20px; }
  .proof-divider { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
}
