:root {
  --royal: #2b4dff;
  --royal-dark: #1e3ae2;
  --royal-deep: #1630b8;
  --royal-tint: #eef2ff;
  --navy: #0e1a3c;
  --ink: #131f3f;
  --text: #4a5673;
  --muted: #6b7690;
  --white: #ffffff;
  --gray: #f5f7fc;
  --border: #e6eaf3;
  --success: #16c784;
  --shadow-sm: 0 6px 20px rgba(19, 31, 63, 0.06);
  --shadow: 0 20px 50px rgba(19, 31, 63, 0.08);
  --shadow-lg: 0 30px 80px rgba(19, 31, 63, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

section {
  padding: 104px 0;
  position: relative;
}

section[id],
[id="hero"] {
  scroll-margin-top: 76px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  color: var(--text);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 17px 40px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(43, 77, 255, 0.3);
}

.btn-primary:hover {
  background: var(--royal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(43, 77, 255, 0.38);
}

.btn-white {
  background: var(--white);
  color: var(--royal);
  box-shadow: 0 10px 30px rgba(4, 12, 48, 0.18);
}

.btn-white:hover {
  background: var(--royal-tint);
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.header.scrolled .logo {
  color: var(--ink);
}

.logo .dot {
  color: var(--royal);
}

.header:not(.scrolled) .logo .dot {
  color: #8ea1ff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header.scrolled .nav-links a {
  color: var(--text);
}

.header.scrolled .nav-links a:hover {
  color: var(--royal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
  background: var(--ink);
}

/* HERO */
.hero {
  background: linear-gradient(150deg, #1e3ae2 0%, #2b4dff 55%, #3b62ff 100%);
  padding: 0 0 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 90px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--white);
}

.hero-text .eyebrow {
  color: #bfcaff;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.headline-em {
  display: block;
  color: #9fb2ff;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 34px;
}

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

/* HERO VISUAL */
.hero-visual {
  position: relative;
  padding: 30px 20px 40px 30px;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  z-index: 2;
  animation: floaty 7s ease-in-out infinite;
}

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

.visual-card-head {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dcf0;
}

.visual-dot:first-child {
  background: #ff5f6d;
}

.visual-dot:nth-child(2) {
  background: #ffc24b;
}

.visual-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.visual-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-bar {
  height: 12px;
  border-radius: 6px;
  background: var(--royal-tint);
}

.visual-bar.bar-long { width: 82%; }
.visual-bar.bar-short { width: 58%; }
.visual-bar.bar-med { width: 70%; }

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  padding: 16px;
  background: var(--royal-tint);
  border-radius: var(--radius-sm);
}

.chart-col {
  flex: 1;
  background: linear-gradient(180deg, var(--royal), var(--royal-deep));
  border-radius: 6px 6px 3px 3px;
  min-height: 18px;
}

.visual-row.bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.visual-badge-green {
  background: rgba(22, 199, 132, 0.12);
  color: #0f9d66;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
}

.geo-block {
  position: absolute;
  z-index: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.geo-one {
  width: 120px;
  height: 120px;
  bottom: 8px;
  left: 0;
  transform: rotate(18deg);
}

.geo-two {
  width: 70px;
  height: 70px;
  top: 6px;
  right: -6px;
  transform: rotate(-14deg);
  border-radius: 50%;
}

.badge-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.badge-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--royal-tint);
  color: var(--royal);
  font-size: 1.1rem;
}

.badge-float strong {
  display: block;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
}

.badge-float small {
  color: var(--muted);
  font-size: 0.78rem;
}

.badge-a { top: 4%; right: 2%; animation-delay: 0.4s; }
.badge-b { bottom: 20%; left: -4%; animation-delay: 1.2s; }
.badge-c { bottom: 2%; right: 12%; animation-delay: 2s; }

/* HERO STATS */
.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px 50px;
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--royal);
}

.stat-plus {
  font-size: 1.6rem;
  color: var(--royal);
  font-weight: 800;
}

.stat-label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.hero-curve {
  display: block;
  width: 100%;
  height: 90px;
  position: relative;
  z-index: 1;
  margin-top: -10px;
  transform: translateY(120px);
}

.curve-white {
  fill: var(--white);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header-light h2 {
  color: var(--white);
}

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

.section-header-light .eyebrow {
  color: #9fb2ff;
}

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

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

.service-card {
  background: linear-gradient(165deg, #2b4dff, #1e3ae2);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.7rem;
  margin-bottom: 24px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex: 1;
}

.service-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease;
}

.service-link:hover {
  gap: 10px;
}

/* WHY ME */
.why-me {
  background: var(--gray);
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.why-text > p {
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 34px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--royal-tint);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* WHY VISUAL */
.why-visual {
  position: relative;
  padding: 20px;
}

.why-visual-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  z-index: 2;
}

.why-visual-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.why-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-deep));
  color: var(--white);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-visual-head h4 {
  font-size: 1.02rem;
  font-weight: 700;
}

.why-visual-head p {
  font-size: 0.82rem;
  color: var(--muted);
}

.why-live {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f9d66;
  background: rgba(22, 199, 132, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.why-visual-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.why-metric-label {
  font-size: 0.9rem;
  color: var(--text);
}

.why-metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--royal);
}

.badge-circle {
  bottom: -18px;
  right: 10px;
  animation-delay: 0.8s;
}

/* SEO */
.seo {
  background: var(--white);
}

.seo-formula {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
  margin-bottom: 46px;
}

.seo-formula h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.formula-box {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.formula-item,
.formula-result {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 86px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.formula-item {
  flex: 1;
  min-width: 150px;
  max-width: 210px;
}

.formula-result {
  border-color: var(--royal);
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: linear-gradient(160deg, var(--royal), var(--royal-deep));
  box-shadow: var(--shadow);
}

.formula-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.formula-result .formula-label {
  color: rgba(255, 255, 255, 0.75);
}

.formula-value {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
}

.formula-result .formula-value {
  color: var(--white);
}

.formula-plus,
.formula-equals {
  color: var(--royal);
  font-size: 1.5rem;
  font-weight: 800;
  align-self: center;
}

.local-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.area-chip:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.seo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.seo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--royal-tint);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.seo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.seo-card ul {
  flex: 1;
}

.seo-card ul li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.seo-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--royal);
  font-weight: 700;
}

.seo-card strong {
  color: var(--ink);
}

/* PROCESS */
.process {
  background: var(--gray);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.process-phase {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-phase:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.phase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--royal-tint);
  color: var(--royal);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-phase h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.phase-sub {
  color: var(--royal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.process-list {
  flex: 1;
}

.process-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
}

.process-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--royal);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.flow-item {
  background: var(--royal-tint);
  border: 1px solid transparent;
  color: var(--royal);
  padding: 11px 18px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.flow-item:hover {
  background: var(--royal);
  color: var(--white);
}

.flow-arrow {
  color: var(--royal);
  font-weight: 800;
}

.process-ai {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.process-ai p {
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.process-ai strong {
  color: var(--royal);
}

/* PORTFOLIO */
.portfolio {
  background: var(--white);
}

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

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
}

.portfolio-overlay {
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, transparent, rgba(14, 26, 60, 0.92) 100%);
  transform: translateY(14px);
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-tag {
  display: inline-block;
  background: var(--royal);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

/* CONTACT */
.contact {
  background: linear-gradient(150deg, #182c66 0%, #2b4dff 160%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 22px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(6px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.contact-link {
  color: #cdd6ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 77, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a7b0c4;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232b4dff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--gray);
}

.form-group select option {
  background: var(--white);
  color: var(--ink);
}

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

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 64px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer .logo {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 14px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links ul li {
  margin-bottom: 11px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: var(--white);
    width: min(80vw, 340px);
    height: 100vh;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    gap: 26px;
    margin: 0;
    transition: right 0.4s ease;
    z-index: 998;
    box-shadow: -20px 0 60px rgba(14, 26, 60, 0.18);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--ink) !important;
    font-size: 1.05rem;
  }

  .nav-links a:hover {
    color: var(--royal) !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hamburger.active span {
    background: var(--ink);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 130px;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .badge-a { right: 0; }
  .badge-b { left: 0; }

  .why-grid-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 22px;
    padding: 28px 20px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  section {
    padding: 80px 0;
  }

  .services {
    padding-top: 150px;
  }

  .btn-nav-cta {
    display: none;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .seo-formula {
    padding: 26px 18px;
  }

  .formula-item,
  .formula-result {
    min-width: 100%;
  }

  .formula-plus,
  .formula-equals {
    transform: rotate(90deg);
  }

  .hero-text h1 {
    font-size: 2.15rem;
  }

  .badge-float {
    padding: 10px 14px;
    gap: 8px;
  }

  .badge-float-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .hero-cta .btn {
    width: 100%;
  }
}