/* ================================================================
   HORIZON WEBS — styles.css
   Brand: Navy #1E2A4A | Orange #E8712A | Amber #F5A623
================================================================ */

/* ----------------------------------------------------------------
   CSS Variables
---------------------------------------------------------------- */
:root {
  --navy:        #1E2A4A;
  --navy-dark:   #141d33;
  --navy-mid:    #253360;
  --orange:      #E8712A;
  --amber:       #F5A623;
  --gold:        #F7C948;
  --gradient:    linear-gradient(90deg, #E8712A 0%, #F5A623 50%, #F7C948 100%);
  --gradient-v:  linear-gradient(135deg, #E8712A 0%, #F7C948 100%);
  --white:       #FFFFFF;
  --off-white:   #F8F9FB;
  --gray-50:     #F4F5F7;
  --gray-100:    #EAEDF2;
  --gray-300:    #C1C8D5;
  --gray-500:    #7B88A0;
  --gray-700:    #3E4A62;
  --text-main:   #1E2A4A;
  --text-sub:    #5A6480;
  --border:      #E2E7F0;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(30,42,74,.08);
  --shadow-md:   0 4px 16px rgba(30,42,74,.12);
  --shadow-lg:   0 12px 40px rgba(30,42,74,.16);
  --shadow-xl:   0 24px 64px rgba(30,42,74,.20);
  --font:        'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --container:   1180px;
  --transition:  0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
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; }

/* ----------------------------------------------------------------
   Utility
---------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-header--light { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.75); }

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(232,113,42,.12), rgba(245,166,35,.12));
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(232,113,42,.2);
}

.section-badge--light {
  background: rgba(255,255,255,.12);
  color: var(--amber);
  border-color: rgba(245,166,35,.3);
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-v);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,113,42,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,113,42,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,113,42,.04);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }

/* ----------------------------------------------------------------
   Logo
---------------------------------------------------------------- */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-img--footer { height: 38px; }

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.navbar__logo { flex-shrink: 0; }

.navbar__nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.navbar__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active { color: var(--navy); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

.navbar__cta { margin-left: 16px; padding: 10px 20px; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  padding-top: 130px;
  padding-bottom: 100px;
  background: var(--white);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,42,74,.06);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.hero__headline {
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero__headline em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* --- Browser Mockup --- */
.hero__visual {
  position: relative;
}

.mockup-browser {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FFBD2E; }
.dot--green  { background: #28CA41; }

.mockup-browser__url {
  margin-left: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--gray-500);
  flex: 1;
  max-width: 220px;
}

.mockup-browser__screen {
  background: var(--off-white);
  min-height: 320px;
}

.mockup-screen__hero {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.mockup-logo-line {
  width: 80px; height: 8px;
  background: var(--gradient);
  border-radius: 4px;
}

.mockup-nav-links {
  display: flex;
  gap: 8px;
}
.mockup-nav-links span {
  display: block;
  width: 28px; height: 6px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
}

.mockup-hero-content {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-headline {
  height: 12px;
  background: var(--white);
  border-radius: 4px;
  width: 85%;
  opacity: .9;
}
.mockup-headline--short { width: 60%; opacity: .7; }

.mockup-subtext {
  height: 7px;
  background: rgba(255,255,255,.35);
  border-radius: 4px;
  margin-top: 4px;
}
.mockup-subtext--short { width: 70%; }

.mockup-cta {
  width: 110px; height: 28px;
  background: var(--gradient-v);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mockup-card {
  height: 60px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.mockup-card--accent {
  background: var(--gradient-v);
}

/* Float badges */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero__float--1 {
  bottom: 40px;
  left: -20px;
  animation-delay: 0s;
}
.hero__float--2 {
  top: 30px;
  right: -16px;
  animation-delay: 1.5s;
}

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

/* ----------------------------------------------------------------
   TRUST STRIP
---------------------------------------------------------------- */
.trust-strip {
  background: var(--navy);
  padding: 40px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--amber);
}

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 0.9375rem;
  font-weight: 700;
}
.trust-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
}

/* ----------------------------------------------------------------
   SERVICES
---------------------------------------------------------------- */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(232,113,42,.1), rgba(247,201,72,.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--orange);
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   PROCESS
---------------------------------------------------------------- */
.process {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,113,42,.18) 0%, transparent 60%);
  pointer-events: none;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(232,113,42,.4) 10%, rgba(247,201,72,.4) 90%, transparent);
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

.process-step__number {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--gradient-v);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(232,113,42,.4);
}

.process-step__content {
  padding-top: 14px;
}
.process-step__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step__content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 520px;
}

/* ----------------------------------------------------------------
   PORTFOLIO
---------------------------------------------------------------- */
.portfolio {
  padding: 100px 0;
  background: var(--off-white);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: flex-start;
}

.portfolio-card__preview--restaurant { background: linear-gradient(135deg, #FFF5EE 0%, #FFE8D6 100%); }
.portfolio-card__preview--legal      { background: linear-gradient(135deg, #1E2A4A 0%, #253360 100%); }
.portfolio-card__preview--services   { background: linear-gradient(135deg, #F0F4FF 0%, #E5ECFF 100%); }
.portfolio-card__preview--business   { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); }

.preview-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  box-shadow: var(--shadow-sm);
}
.preview-nav-bar--dark {
  background: rgba(255,255,255,.12);
}

.preview-logo-mark {
  width: 60px; height: 6px;
  background: var(--gradient);
  border-radius: 3px;
}
.preview-logo-mark--light {
  background: rgba(255,255,255,.6);
}

.preview-nav-items {
  display: flex;
  gap: 6px;
}
.preview-nav-items span {
  display: block;
  width: 22px; height: 5px;
  background: var(--gray-100);
  border-radius: 3px;
}

.preview-hero-block {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.preview-hero-block--dark {
  background: rgba(255,255,255,.08);
}

.preview-text-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.preview-line {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
}
.preview-line--title { width: 80%; height: 10px; background: var(--gray-300); }
.preview-line--mid   { width: 60%; }
.preview-line--sub   { width: 50%; }
.preview-line--light { background: rgba(255,255,255,.5); }
.preview-line--title.preview-line--light { background: rgba(255,255,255,.85); }

.preview-image-block {
  width: 70px; height: 56px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.preview-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-badge {
  width: 64px; height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
}

.preview-cta-block {
  width: 90px; height: 26px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.preview-cards-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.preview-service-card {
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.preview-service-card--accent {
  background: var(--gradient-v);
}

.portfolio-card__info {
  padding: 24px 28px 28px;
}
.portfolio-card__tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(232,113,42,.1), rgba(245,166,35,.1));
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.portfolio-card__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.portfolio-card__info p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   WHY US
---------------------------------------------------------------- */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.why-us__content > p {
  font-size: 1.0625rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gradient-v);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-feature__check svg {
  width: 14px; height: 14px;
  stroke: var(--white);
}

.why-feature div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.why-feature strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}
.why-feature span {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* Stats & Review cards */
.why-us__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stats-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
}

.stats-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
}

.stats-card__number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.stats-card__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-card__stars {
  color: var(--amber);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.9375rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}
.review-card span {
  font-size: 0.8125rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   CTA BANNER
---------------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-v);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-banner__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 8px;
}
.cta-banner__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
}

/* ----------------------------------------------------------------
   CONTACT
---------------------------------------------------------------- */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact__inner {}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.contact-item strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-sub);
}

.contact__btn { margin-top: 8px; }

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,113,42,.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B88A0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--navy-dark);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gradient-v);
  color: var(--white);
}
.footer__social svg {
  width: 18px; height: 18px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber); }

.footer__contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.footer__contact .btn--outline {
  margin-top: 16px;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
  font-size: 0.875rem;
}
.footer__contact .btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: transparent;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.35);
}

/* ----------------------------------------------------------------
   ANIMATIONS (triggered by JS IntersectionObserver)
---------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.07s; }
.fade-up-d2 { transition-delay: 0.14s; }
.fade-up-d3 { transition-delay: 0.21s; }
.fade-up-d4 { transition-delay: 0.28s; }
.fade-up-d5 { transition-delay: 0.35s; }
.fade-up-d6 { transition-delay: 0.42s; }

/* ----------------------------------------------------------------
   RESPONSIVE — Tablet
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 500px; margin-inline: auto; }
  .hero__float--2 { right: 0; }

  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact__layout { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — Mobile
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .navbar__nav,
  .navbar__cta { display: none; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: var(--white);
    padding: 32px 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    z-index: 899;
    overflow-y: auto;
  }
  .navbar__nav.open a {
    font-size: 1.125rem;
    color: var(--navy);
    padding: 4px 0;
  }
  .navbar__nav.open + .navbar__cta {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    justify-content: center;
    z-index: 900;
  }

  .navbar__toggle { display: flex; }

  .hero { padding-top: 100px; padding-bottom: 64px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: 16px; }

  .services__grid { grid-template-columns: 1fr; }

  .portfolio__grid { grid-template-columns: 1fr; }

  .process__steps::before { left: 24px; }
  .process-step { gap: 20px; }
  .process-step__number { width: 48px; height: 48px; font-size: 0.875rem; }

  .why-us__inner { gap: 40px; }

  .cta-banner { padding: 60px 0; }
  .cta-banner__inner { text-align: center; }
  .cta-banner .btn--white { width: 100%; justify-content: center; }

  .contact__form { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .section-header { margin-bottom: 44px; }
  .services, .portfolio, .process, .why-us, .contact { padding: 72px 0; }
}

@media (max-width: 480px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .hero__float { display: none; }
}
