:root {
  --bg: #FEFEFE;
  --vivid-royal: #1218B5;
  --golden-bronze: #CA9A32;
  --wisteria-blue: #3a4a9e;
  --pale-blue: #eef1ff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--vivid-royal); overflow-x: hidden; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 92px;
  background: rgba(254,254,254,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,24,181,.15); transition: box-shadow .3s;
  box-shadow: 0 2px 20px rgba(18,24,181,.07);
}
.logo-wrap { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.logo-img-box { width: 66px; height: 66px; border-radius: 10px; background: rgba(18,24,181,.06); border: white; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.logo-img-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-text-block { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--vivid-royal); letter-spacing: -.02em; }
.logo-name span { color: var(--golden-bronze); }
.logo-tagline { font-size: .66rem; font-weight: 400; color: var(--wisteria-blue); letter-spacing: .07em; text-transform: uppercase; margin-top: .1rem; }
nav ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
nav ul a { font-size: .84rem; font-weight: 500; color: var(--vivid-royal); text-decoration: none; letter-spacing: .05em; text-transform: uppercase; transition: color .2s; }
nav ul a:hover { color: var(--golden-bronze); }
.nav-cta { background: var(--golden-bronze) !important; color: #fff !important; padding: .5rem 1.3rem; border-radius: 5px; font-weight: 700 !important; transition: opacity .2s, transform .2s !important; }
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--vivid-royal); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(254,254,254,.99); padding: 1.5rem 6vw 2rem; border-bottom: 1px solid rgba(18,24,181,.1); z-index: 199; flex-direction: column; gap: 1.2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--vivid-royal); text-decoration: none; letter-spacing: .05em; text-transform: uppercase; padding: .5rem 0; border-bottom: 1px solid rgba(18,24,181,.08); transition: color .2s; }
.mobile-menu a:hover { color: var(--golden-bronze); }

.hero { min-height: 100vh; background: var(--bg); position: relative; overflow: hidden; display: flex; align-items: center; padding: 10rem 6vw 6rem; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(18,24,181,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(18,24,181,.05) 1px, transparent 1px); background-size: 56px 56px; animation: gridMove 22s linear infinite; }
@keyframes gridMove { to { background-position: 56px 56px; } }
.hero::after { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(18,24,181,.07) 0%, transparent 70%); top: -120px; right: -180px; border-radius: 50%; animation: orbPulse 7s ease-in-out infinite alternate; }
@keyframes orbPulse { from { transform: scale(1); opacity: .5; } to { transform: scale(1.18); opacity: 1; } }
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(202,154,50,.1); border: 1px solid rgba(202,154,50,.45); color: var(--golden-bronze); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .32rem 1rem; border-radius: 100px; margin-bottom: 1.8rem; animation: fadeUp .7s ease both; }
.hero-badge::before { content: '●'; font-size: .45rem; }
h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.6rem, 5.5vw, 4.8rem); line-height: 1.04; color: var(--vivid-royal); letter-spacing: -.03em; margin-bottom: 1.4rem; animation: fadeUp .7s .1s ease both; }
h1 .highlight { color: var(--golden-bronze); display: block; }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: var(--wisteria-blue); line-height: 1.75; max-width: 510px; margin-bottom: 2.4rem; animation: fadeUp .7s .2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }
.btn-primary { background: var(--golden-bronze); color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: .92rem; padding: .88rem 1.9rem; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(202,154,50,.35); }
.btn-outline { background: transparent; color: var(--vivid-royal); font-family: 'Syne', sans-serif; font-weight: 600; font-size: .92rem; padding: .88rem 1.9rem; border-radius: 6px; border: 2px solid rgba(18,24,181,.3); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: var(--vivid-royal); background: rgba(18,24,181,.05); }
.hero-stats { position: relative; z-index: 2; display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(18,24,181,.15); animation: fadeUp .7s .4s ease both; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--vivid-royal); }
.stat-num span { color: var(--golden-bronze); }
.stat-label { font-size: .75rem; font-weight: 400; color: var(--wisteria-blue); letter-spacing: .07em; text-transform: uppercase; margin-top: .2rem; }
.hero-visual { position: absolute; right: 6vw; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; gap: 1rem; animation: fadeLeft .9s .3s ease both; }
@keyframes fadeLeft { from { opacity: 0; transform: translateY(-50%) translateX(40px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }
.service-float { background: rgba(18,24,181,.04); border: 1px solid rgba(18,24,181,.15); border-radius: 14px; padding: 1.2rem 1.5rem; width: 235px; transition: transform .3s; box-shadow: 0 4px 20px rgba(18,24,181,.07); }
.service-float:hover { transform: translateX(-6px); }
.service-float-icon { font-size: 1.7rem; margin-bottom: .5rem; }
.service-float-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; color: var(--vivid-royal); margin-bottom: .2rem; }
.service-float-desc { font-size: .76rem; color: var(--wisteria-blue); line-height: 1.5; }
.service-float-tag { display: inline-block; background: rgba(18,24,181,.1); color: var(--vivid-royal); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .65rem; border-radius: 100px; margin-top: .7rem; }
.service-float.gold { border-color: rgba(202,154,50,.35); }
.service-float.gold .service-float-tag { background: rgba(202,154,50,.15); color: var(--golden-bronze); }

/* ══ SHARED ══ */
section { padding: 7rem 6vw; }
.section-label { font-size: .73rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--golden-bronze); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.section-label::before { content: ''; display: block; width: 26px; height: 2px; background: var(--golden-bronze); }
.section-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.1rem; color: var(--vivid-royal); }
.section-sub { font-size: 1rem; color: var(--wisteria-blue); font-weight: 300; line-height: 1.75; max-width: 540px; }

/* ══ SERVICES — NEW DESIGN ══ */
#services { background: var(--bg); padding-bottom: 5rem; }
.services-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1.5rem; }

/* Category tabs */
.services-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.stab { font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .42rem 1.1rem; border-radius: 100px; border: 1.5px solid rgba(18,24,181,.2); color: var(--wisteria-blue); background: transparent; cursor: pointer; transition: all .25s; }
.stab.active, .stab:hover { background: var(--vivid-royal); color: #fff; border-color: var(--vivid-royal); }

/* Main services bento grid */
.services-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(80px, auto); gap: 1.1rem; }

.svc { border-radius: 20px; padding: 2rem; border: 1px solid rgba(18,24,181,.1); background: var(--bg); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.svc:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(18,24,181,.1); border-color: rgba(18,24,181,.22); }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--vivid-royal), #7080e8); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.svc:hover::after { transform: scaleX(1); }

/* Span variants */
.svc-wide { grid-column: span 7; background: var(--pale-blue); }
.svc-med  { grid-column: span 5; }
.svc-third { grid-column: span 4; }
.svc-half  { grid-column: span 6; background: var(--pale-blue); }
.svc-full  { grid-column: span 12; background: linear-gradient(135deg, var(--vivid-royal) 0%, #2030cc 100%); color: #fff; }
.svc-full::after { display: none; }
.svc-full:hover { box-shadow: 0 20px 50px rgba(18,24,181,.3); }

.svc-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3rem; line-height: 1; color: rgba(18,24,181,.08); position: absolute; top: 1.2rem; right: 1.4rem; pointer-events: none; transition: color .3s; }
.svc:hover .svc-num { color: rgba(18,24,181,.14); }
.svc-full .svc-num { color: rgba(255,255,255,.07); }
.svc-full:hover .svc-num { color: rgba(255,255,255,.12); }

.svc-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.svc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--vivid-royal); margin-bottom: .45rem; line-height: 1.2; }
.svc-full .svc-title { color: #fff; font-size: 1.2rem; }
.svc-desc { font-size: .83rem; color: var(--wisteria-blue); line-height: 1.65; }
.svc-full .svc-desc { color: rgba(210,225,255,.85); }
.svc-tag { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--vivid-royal); background: rgba(18,24,181,.08); padding: .2rem .75rem; border-radius: 100px; }
.svc-full .svc-tag { background: rgba(255,255,255,.15); color: #fff; }
.svc-gold-tag { background: rgba(202,154,50,.12); color: var(--golden-bronze); }

/* Full-row service — horizontal layout */
.svc-full-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.svc-full-left { flex: 1; min-width: 220px; }
.svc-full-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.svc-full-cta { background: var(--golden-bronze); color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: .85rem; padding: .75rem 1.6rem; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; transition: transform .2s, box-shadow .2s; flex-shrink: 0; }
.svc-full-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(202,154,50,.35); }

/* ══ CAROUSEL ══ */
.carousel-section { background: var(--pale-blue); padding: 5rem 0; position: relative; overflow: hidden; border-top: 1px solid rgba(18,24,181,.08); border-bottom: 1px solid rgba(18,24,181,.08); }
.carousel-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--pale-blue) 0%, rgba(18,24,181,.04) 50%, var(--pale-blue) 100%); pointer-events: none; z-index: 0; }
.carousel-header { text-align: center; padding: 0 6vw 3rem; position: relative; z-index: 1; }
.carousel-header .section-label { justify-content: center; }
.carousel-track-wrap { position: relative; z-index: 1; overflow: hidden; cursor: grab; padding-bottom: .5rem; }
.carousel-track-wrap:active { cursor: grabbing; }
.carousel-track { display: flex; gap: 1.5rem; padding: 0 6vw; transition: transform .5s cubic-bezier(.25,.1,.25,1); will-change: transform; user-select: none; }
.carousel-slide { flex-shrink: 0; width: 340px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(18,24,181,.12); background: var(--bg); transition: transform .3s, box-shadow .3s; }
.carousel-slide:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(18,24,181,.14); }
.slide-placeholder { width: 100%; height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; background: linear-gradient(135deg, #e0e6ff 0%, #cdd6ff 100%); }
.slide-placeholder-icon { font-size: 3.5rem; opacity: .6; }
.slide-placeholder-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(18,24,181,.35); }
.carousel-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.carousel-caption { padding: 1.4rem 1.5rem 1.6rem; }
.caption-tag { display: inline-block; background: rgba(18,24,181,.08); color: var(--vivid-royal); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .18rem .65rem; border-radius: 100px; margin-bottom: .65rem; }
.caption-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .98rem; color: var(--vivid-royal); margin-bottom: .3rem; }
.caption-desc { font-size: .79rem; color: var(--wisteria-blue); line-height: 1.6; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; position: relative; z-index: 1; }
.carousel-btn { width: 46px; height: 46px; border-radius: 50%; background: rgba(18,24,181,.07); border: 1px solid rgba(18,24,181,.2); color: var(--vivid-royal); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, transform .2s, color .2s; }
.carousel-btn:hover { background: var(--vivid-royal); border-color: var(--vivid-royal); color: #fff; transform: scale(1.08); }
.carousel-dots { display: flex; gap: .5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(18,24,181,.2); cursor: pointer; transition: background .25s, transform .25s; border: none; }
.dot.active { background: var(--golden-bronze); transform: scale(1.3); }

/* ══ BRANDS / PARTNERS ══ */
#brands { background: var(--bg); padding: 5.5rem 6vw; border-top: 1px solid rgba(18,24,181,.07); }
.brands-header { text-align: center; margin-bottom: 3.5rem; }
.brands-header .section-label { justify-content: center; }
.brands-header .section-title { margin-bottom: .5rem; }
.brands-header p { font-size: .92rem; color: var(--wisteria-blue); font-weight: 300; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* slightly wider minimum */
  gap: 1.5rem; /* increased gap for breathing room */
  max-width: 1200px; /* allow more width */
  margin: 0 auto;
}

.brand-tile {
  aspect-ratio: 16/9;
  border-radius: 14px;
  border: 1.5px solid rgba(18,24,181,.1);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem; /* more padding for larger logos */
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}
.brand-tile:hover {
  border-color: rgba(18,24,181,.28);
  box-shadow: 0 8px 28px rgba(18,24,181,.08);
  transform: translateY(-4px);
}
.brand-tile img {
  max-width: 90%;       /* allow image to use more width */
  max-height: 80px;     /* increased from 44px */
  object-fit: contain;
  display: block;
  /* grayscale and opacity filters removed – full colour */
}

/* Placeholder brand tile — kept for reference */
.brand-placeholder {
  aspect-ratio: 16/9;
  border-radius: 14px;
  border: 1.5px dashed rgba(18,24,181,.15);
  background: rgba(18,24,181,.025);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1.2rem;
  transition: border-color .25s;
}
.brand-placeholder:hover { border-color: rgba(18,24,181,.3); }
.brand-placeholder-icon { font-size: 1.6rem; opacity: .35; }
.brand-placeholder-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .82rem; color: var(--vivid-royal); opacity: .5; text-align: center; line-height: 1.2; letter-spacing: .03em; }
.brand-placeholder-hint { font-size: .62rem; color: var(--wisteria-blue); opacity: .5; text-transform: uppercase; letter-spacing: .08em; }

.brands-cta { text-align: center; margin-top: 2.8rem; }
.brands-cta p { font-size: .88rem; color: var(--wisteria-blue); margin-bottom: 1rem; }

/* ══ WHY US ══ */
#why { background: var(--vivid-royal); color: var(--bg); position: relative; overflow: hidden; }
#why::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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
#why .section-label { color: var(--golden-bronze); }
#why .section-title { color: #fff; }
#why .section-sub { color: rgba(210,220,255,.85); }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.8rem; }
.why-feature { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 1.3rem; transition: background .3s; }
.why-feature:hover { background: rgba(255,255,255,.13); }
.why-feature-icon { font-size: 1.7rem; margin-bottom: .6rem; }
.why-feature-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: .3rem; }
.why-feature-text { font-size: .79rem; color: rgba(200,215,255,.8); line-height: 1.6; }
.why-card-stack { position: relative; height: 400px; }
.review-card { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); border-radius: 18px; padding: 1.6rem; }
.review-card:nth-child(1) { width: 290px; top: 0; left: 0; animation: float1 5s ease-in-out infinite; }
.review-card:nth-child(2) { width: 275px; bottom: 0; right: 0; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
.stars { color: var(--golden-bronze); font-size: .95rem; margin-bottom: .7rem; }
.review-text { font-size: .84rem; color: rgba(224,234,255,.9); line-height: 1.65; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.reviewer-avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; color: #fff; flex-shrink: 0; }
.reviewer-name { font-size: .82rem; font-weight: 600; color: #fff; }
.reviewer-loc { font-size: .72rem; color: rgba(200,215,255,.7); }

/* ══ PROCESS ══ */
#process { background: var(--bg); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 25px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--vivid-royal), rgba(18,24,181,.15)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 52px; height: 52px; background: var(--vivid-royal); color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; border: 4px solid var(--bg); box-shadow: 0 0 0 3px var(--vivid-royal); transition: transform .3s; }
.step:hover .step-num { transform: scale(1.1); }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: .4rem; color: var(--vivid-royal); }
.step-text { font-size: .82rem; color: var(--wisteria-blue); line-height: 1.65; }

/* ══ CONTACT ══ */
#contact { background: var(--pale-blue); color: var(--vivid-royal); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(18,24,181,.06) 0%, transparent 70%); top: -120px; left: 50%; transform: translateX(-50%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.contact-info .section-sub { margin-bottom: 2.4rem; }
.info-block { display: flex; flex-direction: column; gap: 1.3rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(18,24,181,.08); border: 1px solid rgba(18,24,181,.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-label { font-size: .71rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--golden-bronze); margin-bottom: .2rem; }
.info-value { font-size: .87rem; color: var(--wisteria-blue); line-height: 1.55; }
.info-value a { color: var(--vivid-royal); text-decoration: none; transition: color .2s; }
.info-value a:hover { color: var(--golden-bronze); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; background: var(--bg); border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(18,24,181,.1); box-shadow: 0 8px 32px rgba(18,24,181,.07); }
.form-group { display: flex; flex-direction: column; gap: .36rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--wisteria-blue); }
.form-group input, .form-group select, .form-group textarea { background: rgba(18,24,181,.04); border: 1px solid rgba(18,24,181,.18); border-radius: 8px; padding: .82rem 1rem; color: var(--vivid-royal); font-family: 'DM Sans', sans-serif; font-size: .9rem; transition: border-color .2s, background .2s; outline: none; -webkit-appearance: none; width: 100%; }
.form-group select option { background: var(--bg); color: var(--vivid-royal); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(18,24,181,.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--golden-bronze); background: rgba(18,24,181,.04); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-submit { grid-column: 1/-1; display: flex; justify-content: flex-start; margin-top: .4rem; }

/* ══ FOOTER ══ */
footer { background: var(--vivid-royal); border-top: 1px solid rgba(255,255,255,.1); padding: 2.5rem 6vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-logo-box { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(202,154,50,.4); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; }
.footer-logo-text span { color: var(--golden-bronze); }
.footer-links { display: flex; gap: 1.8rem; list-style: none; }
.footer-links a { font-size: .79rem; color: rgba(210,220,255,.75); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--golden-bronze); }
.footer-copy { font-size: .76rem; color: rgba(210,220,255,.5); }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-wide { grid-column: span 12; }
  .svc-med  { grid-column: span 12; }
  .svc-half { grid-column: span 12; }
  .svc-third { grid-column: span 6; }
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .svc-third { grid-column: span 12; }
}
@media (max-width: 700px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 1.5rem; }
  .hero { padding-top: 8rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .carousel-slide { width: 280px; }
  footer { flex-direction: column; align-items: flex-start; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-full-inner { flex-direction: column; }
}