/* ============================================================
   Spectrum IT — Shared Stylesheet
   ============================================================ */

:root {
  --accent: #0387ca;
  --accent-hover: #0155a5;
  --accent-light: #e1f1fb;
  --accent-dark: #0155a5;
  --midnight: #0f2a44;
  --dark: #1b2154;
  --sand: #f3f5fb;
  --white: #ffffff;
  --border: #d9e0f0;
  --muted: #5c638a;
  --muted-light: #7b84a6;
  --font-body: "Instrument Sans", sans-serif;
  --font-head: "Sora", sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 30px rgba(15,32,48,0.08);
  --shadow-lift: 0 18px 40px rgba(15,32,48,0.12);
  --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--sand); color: var(--dark); line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { width: 100%; height: auto; display: block; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.hero .container { max-width: 1400px; }
.section-padding { padding: 6rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.8rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: var(--transition); border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--midnight); }
.btn-white { background: var(--white); color: var(--accent-dark); border: 1px solid rgba(255,255,255,0.7); }
.btn-ghost { background: transparent; color: var(--accent-dark); border: 1.5px solid var(--accent-dark); }
.btn-ghost:hover { background: var(--accent-dark); color: var(--white); }
.btn-lightblue { background: var(--accent-light); color: var(--accent-dark); border: 1.5px solid var(--accent-light); }
.btn-lightblue:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ---- NAV ---- */
nav#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 0; background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
nav#navbar.scrolled {
  background: rgba(15,42,68,0.97); padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--white); }
.logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a { color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem; }
.nav-links > a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 0.75rem; }
.nav-cta { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; border: none;
  background: transparent; color: white; font-size: 1.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.hamburger:hover { color: var(--accent); }
.hamburger.is-open { transform: rotate(90deg); }
.mobile-nav {
  display: flex; flex-direction: column;
  position: fixed; left: 1rem; right: 1rem;
  background: rgba(8,18,28,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 0; gap: 0; z-index: 999;
  max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open { max-height: 900px; opacity: 1; pointer-events: auto; transform: translateY(0); padding: 0.75rem 1.25rem; }
.mobile-nav a.mobile-link { color: rgba(255,255,255,0.82); font-weight: 500; font-size: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a.mobile-link:last-of-type { border-bottom: none; }
.mobile-nav a.mobile-sub { font-size: 0.88rem; padding: 0.6rem 0 0.6rem 1rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.mobile-section-label { color: rgba(255,255,255,0.35); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.8rem 0 0.2rem; }

/* NAV DROPDOWN */
.nav-item { position: relative; }
.nav-item-link {
  color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav-item-link:hover { color: var(--white); }
.nav-chevron { font-size: 0.7rem; transition: transform 0.2s ease; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  padding-top: 14px;
  background: transparent;
  min-width: 280px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 1001;
}
.nav-dropdown::before {
  content: ''; position: absolute; inset: 14px 0 0 0;
  background: rgba(15,42,68,0.98); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px); box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: -1;
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.65rem 1.2rem; color: rgba(255,255,255,0.78); font-size: 0.9rem;
  transition: var(--transition); position: relative;
}
.nav-dropdown a:first-child { margin-top: 0.5rem; }
.nav-dropdown a:last-child { margin-bottom: 0.5rem; }
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-dropdown a i { color: var(--accent); font-size: 0.85rem; width: 16px; }

/* ---- HERO (Homepage) ---- */
.hero {
  min-height: 90vh; position: relative; display: flex;
  align-items: center; justify-content: flex-start;
  text-align: left; color: var(--white); overflow: hidden;
  padding-top: 140px; padding-bottom: 80px; background: var(--midnight);
}
.hero-photo {
  position: absolute; width: 1100px; height: 1100px;
  top: -360px; right: -120px; border-radius: 50%; overflow: hidden; z-index: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) saturate(0.9); }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--midnight) 80%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 560px;
  display: flex; flex-direction: column; align-items: flex-start; padding: 2rem 1rem;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.text-accent { color: var(--accent); }
.proof-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius); padding: 8px 16px; margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.avatars { display: flex; }
.avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--accent); margin-left: -8px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 0.9rem; font-weight: 600; color: white; }
.stars { color: #f6c453; font-size: 0.75rem; margin-bottom: 4px; letter-spacing: 1px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-bottom: 1.3rem; animation: fadeUp 0.8s 0.2s ease both; }
.hero p { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.88); margin-bottom: 2.2rem; max-width: 520px; animation: fadeUp 0.8s 0.3s ease both; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; }

/* ---- PAGE HERO (Inner pages) ---- */
.page-hero {
  min-height: 44vh; background: var(--midnight);
  display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 70px;
  color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; background: rgba(3,135,202,0.12);
  right: -180px; top: -240px; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(1,85,165,0.1);
  left: -100px; bottom: -180px; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; animation: fadeUp 0.7s ease both; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin-bottom: 2rem; animation: fadeUp 0.7s 0.15s ease both; }
.page-hero .hero-btns { animation: fadeUp 0.7s 0.25s ease both; }

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.breadcrumb { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ---- SECTION SHAPES ---- */
.section-shape { position: relative; overflow: hidden; }
.section-shape > .container { position: relative; z-index: 2; }
.shape-intro::before, .shape-services::before, .shape-process::before, .shape-roadmap::before, .shape-projects::before {
  content: ''; position: absolute; width: 380px; height: 380px;
  border-radius: 50%; background: rgba(3,135,202,0.07); z-index: 1;
}
.shape-intro::before { top: -140px; right: -120px; }
.shape-services::before { bottom: -160px; left: -120px; }
.shape-process::before { top: -140px; left: -100px; }
.shape-roadmap::before { bottom: -180px; right: -120px; }
.shape-projects::before { top: -160px; right: -100px; }
.shape-statement::before {
  content: ''; position: absolute; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(1,85,165,0.08);
  left: -120px; top: -120px; z-index: 1;
}

/* ---- INTRO ---- */
.intro { background: var(--white); }
.intro-kicker { color: var(--accent); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 1rem; }
.intro-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.intro-body > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.7rem; }
.intro-img-full { width: 100%; height: 420px; border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; position: relative; }
.intro-img-full img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.intro-img-full:hover img { transform: scale(1.02); }
.img-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: rgba(3,135,202,0.35); box-shadow: 0 6px 16px rgba(3,135,202,0.2); }
.img-dot.dot-1 { top: 16px; right: 24px; }
.img-dot.dot-2 { bottom: 18px; left: 40px; width: 10px; height: 10px; }
.img-dot.dot-3 { top: 60px; left: 18px; width: 6px; height: 6px; }
.intro-badge-overlay {
  position: absolute; bottom: 1.3rem; right: 1.3rem;
  background: var(--white); padding: 1rem 1.3rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px;
}
.intro-badge-overlay i { font-size: 1.4rem; color: var(--accent); }
.intro-badge-overlay strong { display: block; font-size: 0.95rem; }
.intro-badge-overlay span { font-size: 0.82rem; color: var(--muted); }
.usp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp-row--3 { grid-template-columns: repeat(3, 1fr); }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.why-choose-grid .usp-item { grid-column: span 2; }
.why-choose-grid .usp-item:nth-child(4) { grid-column: 2 / span 2; }
.why-choose-grid .usp-item:nth-child(5) { grid-column: 4 / span 2; }
.usp-item { padding: 1.7rem; background: var(--accent-light); border-radius: var(--radius-sm); transition: var(--transition); }
.usp-item:hover { background: #d6ecfb; transform: translateY(-3px); }
.usp-item i { font-size: 1.25rem; color: var(--accent); margin-bottom: 0.75rem; }
.usp-item h4 { font-size: 0.98rem; margin-bottom: 0.4rem; color: var(--dark); }
.usp-item p { font-size: 0.86rem; color: var(--muted); }

/* ---- STATEMENT ---- */
.statement { background: var(--sand); padding: 3rem 0 6rem; }
.statement-card {
  position: relative; background: var(--accent-light); border-radius: var(--radius);
  padding: 3rem; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; overflow: hidden;
}
.statement-card h2 { color: var(--midnight); margin-bottom: 0.8rem; }
.statement-card p { color: var(--muted); max-width: 520px; }
.statement-logo {
  position: absolute; width: 520px; height: auto;
  right: -80px; bottom: -40px; opacity: 0.08;
  filter: brightness(0) invert(0); pointer-events: none;
}

/* ---- SERVICES ---- */
.services { background: var(--sand); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap; }
.services-header-text p { color: var(--muted); margin-top: 0.75rem; }
.service-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.service-tab {
  padding: 0.55rem 1.3rem; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 600; background: var(--white); color: var(--muted);
  border: 1.5px solid var(--border); cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-tab.active, .service-tab:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.services-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.75rem; }
.service-featured {
  background: var(--midnight); color: var(--white); border-radius: var(--radius);
  padding: 3rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px;
}
.service-featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,135,202,0.85) 0%, rgba(1,85,165,0.95) 65%);
  z-index: 0;
}
.service-featured-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; z-index: 0; transition: opacity 0.4s ease; }
.service-featured-content { position: relative; z-index: 1; }
.icon-circle-lg {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,0.16); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.6rem;
}
.service-featured h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.service-featured p { color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 1.6rem; }
.service-cards-col { display: flex; flex-direction: column; gap: 1.2rem; }
.service-card-sm {
  background: var(--white); border-radius: var(--radius-sm); padding: 1.5rem 1.7rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border: 1px solid transparent; transition: var(--transition);
}
.service-card-sm:hover { border-color: var(--border); box-shadow: var(--shadow-card); }
.service-card-sm:hover .icon-circle { background: var(--accent); color: var(--white); }
.icon-circle {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
  transition: var(--transition);
}
.service-card-sm h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.service-card-sm p { font-size: 0.88rem; color: var(--muted); }
.service-icon-row { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.5rem; }
.service-icon-item {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem;
  color: var(--muted); padding-bottom: 6px; border-bottom: 1px solid rgba(1,85,165,0.12);
}
.service-icon-item i { color: var(--accent); font-size: 1rem; }

/* ---- PROCESS ---- */
.process { background: var(--white); }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.process-left { display: grid; gap: 2rem; }
.process-intro p { color: var(--muted); margin-top: 0.8rem; }
.steps-timeline { display: flex; flex-direction: column; gap: 1.4rem; }
.step-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 1rem;
  align-items: stretch; cursor: pointer; padding-bottom: 4px;
  transition: var(--transition);
}
.step-item:hover .step-text h3 { color: var(--accent); }
.step-col { display: flex; flex-direction: column; align-items: center; height: 100%; gap: 8px; }
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; transition: var(--transition);
}
.step-line { width: 2px; background: var(--border); flex: 1; min-height: 24px; }
.step-text h3 { font-size: 1.05rem; }
.step-text p { color: var(--muted); margin-top: 0.3rem; font-size: 0.9rem; }
.step-item.active .step-num { background: var(--accent); color: var(--white); }
.step-item:last-child .step-line { display: none; }
.process-panel { background: var(--sand); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-card); position: sticky; top: 100px; }
.panel-step-num {
  width: 42px; height: 42px; border-radius: 10px; background: var(--accent);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 1rem; font-family: var(--font-head);
}
.panel-detail-list { margin-top: 1rem; display: grid; gap: 0.6rem; color: var(--muted); }
.panel-detail-list li { display: flex; align-items: center; gap: 8px; }
.panel-detail-list i { color: var(--accent-dark); }

/* ---- TESTIMONIALS / ROADMAP ---- */
.testimonials { background: var(--white); }
.testimonials-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.testimonials-side p { color: var(--muted); margin-top: 0.8rem; }
.roadmap-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem 1.6rem; margin: 1.6rem 0 1.4rem; }
.roadmap-stats .stat-item h3 { color: var(--accent); font-size: 1.6rem; }
.roadmap-stats .stat-item p { color: var(--muted); font-size: 0.85rem; }
.testimonial-nav { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.t-nav-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--white); color: var(--accent-dark); cursor: pointer; transition: var(--transition); }
.t-nav-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.testimonial-main { background: var(--accent); border-radius: var(--radius); padding: 2.5rem; position: relative; box-shadow: var(--shadow-card); }
.quote-mark { font-size: 3rem; color: rgba(255,255,255,0.7); font-family: Georgia, serif; line-height: 1; }
.t-quote-main { margin: 1rem 0 1.5rem; font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.7; }
.t-author-row { display: flex; align-items: center; gap: 1rem; }
.t-avatar-lg { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.3); }
.t-name { font-weight: 700; color: var(--white); }
.t-role { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.testimonial-dots { display: flex; gap: 0.4rem; margin-top: 1.2rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: var(--transition); }
.t-dot.active { background: var(--white); }

/* ---- PROJECTS ---- */
.projects { background: var(--sand); }
.projects-head { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; margin-bottom: 2rem; }
.projects-head a { color: var(--accent-dark); font-weight: 600; }
.projects-head a:hover { color: var(--accent); }
.project-masonry { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.project-item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.project-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.5s ease; }
.project-item:hover img { transform: scale(1.04); }
.project-item--main { grid-row: span 2; min-height: 420px; }
.project-item--sm { min-height: 200px; }
.project-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm); font-size: 0.78rem;
  font-weight: 600; color: var(--white);
}
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(1,85,165,0.85) 100%);
  color: white;
}
.project-info h3 { font-size: 1rem; }
.project-info p { font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-top: 0.3rem; }

/* ---- CONTACT ---- */
.contact { background: var(--sand); }
.contact-header { max-width: 820px; margin: 0 auto 2.5rem; text-align: center; }
.contact-header p { color: var(--muted); margin: 0.8rem 0 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.contact-form-box {
  background: var(--white); padding: 2.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.form-group-full { grid-column: span 2; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-input {
  width: 100%; padding: 0.75rem 0.85rem; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
  transition: border-color 0.2s ease; outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-submit { width: 100%; }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.45;
}
.form-status--success {
  background: rgba(3, 135, 202, 0.12);
  color: var(--dark);
  border: 1px solid rgba(3, 135, 202, 0.35);
}
.form-status--error {
  background: rgba(180, 40, 40, 0.08);
  color: #6b1c1c;
  border: 1px solid rgba(180, 40, 40, 0.25);
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.contact-info-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.contact-block { background: var(--white); border-radius: var(--radius-sm); padding: 1.25rem; display: flex; gap: 0.8rem; align-items: center; box-shadow: var(--shadow-card); }
.contact-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent-dark); flex-shrink: 0; }
.contact-faq {
  background: var(--accent-light); border-radius: 18px; padding: 2rem;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.contact-faq::after {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: rgba(3,135,202,0.12); right: -60px; top: -80px; z-index: 0;
}
.faq-head { position: relative; z-index: 1; }
.faq-head h3 { margin-bottom: 0.5rem; color: var(--midnight); }
.faq-head p { color: var(--muted); margin-bottom: 1.5rem; }
.faq-list { display: grid; gap: 1.1rem; position: relative; z-index: 1; }
.faq-list li { display: grid; grid-template-columns: 12px 1fr; gap: 0.8rem; align-items: start; }
.faq-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-top: 6px; box-shadow: 0 0 0 6px rgba(3,135,202,0.15); }
.faq-list strong { display: block; color: var(--midnight); margin-bottom: 0.35rem; }
.faq-list p { color: var(--muted); font-size: 0.92rem; }
.faq-cta { margin-top: 1.5rem; position: relative; z-index: 1; }

/* ---- FEATURE GRID (inner pages) ---- */
.feature-section { background: var(--white); }
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-intro .intro-kicker { display: block; margin-bottom: 0.8rem; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p { color: var(--muted); font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition); box-shadow: var(--shadow-card);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--accent-light); }
.feature-card .icon-circle { margin-bottom: 1.2rem; }
.feature-card h4 { margin-bottom: 0.6rem; font-size: 1.05rem; color: var(--dark); }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--accent); padding: 5rem 0; }
.cta-banner-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-white:hover { background: var(--midnight); color: var(--white); }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.6rem; display: block; }
.blog-date { font-size: 0.8rem; color: var(--muted-light); margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--dark); line-height: 1.35; }
.blog-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-dark); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; }
.blog-read-more:hover { color: var(--accent); gap: 10px; }

/* ---- FOOTER ---- */
footer { background: var(--midnight); color: var(--white); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 0.8rem 0 1rem; font-size: 0.92rem; }
.footer-socials a { margin-right: 0.8rem; color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.footer-socials a:hover { color: var(--accent); }
.footer-col h4 { margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-col a { display: block; margin-bottom: 0.5rem; color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col a:hover { color: var(--white); }
.footer-col .footer-contact-text {
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.4;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; color: rgba(255,255,255,0.55); font-size: 0.85rem;
}
.footer-links a { margin-right: 1rem; color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-links a:hover { color: white; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .intro-top, .process-layout, .testimonials-layout, .services-layout { grid-template-columns: 1fr; }
  .project-masonry { grid-template-columns: 1fr; }
  .project-item--main { grid-row: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: inline-flex; }
  .usp-row { grid-template-columns: repeat(2,1fr); }
  .usp-row--3 { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-grid .usp-item,
  .why-choose-grid .usp-item:nth-child(4),
  .why-choose-grid .usp-item:nth-child(5) { grid-column: 1 / -1; }
  .contact-info-blocks { grid-template-columns: 1fr; }
  .statement-card { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .usp-row { grid-template-columns: 1fr; }
  .usp-row--3 { grid-template-columns: 1fr; }
  .hero-photo { width: 360px; height: 360px; top: -120px; right: -120px; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 1.25rem; }
  .hero { padding-top: 100px; }
  .roadmap-stats { grid-template-columns: 1fr; }
  .page-hero { padding-top: 110px; }
}
