/* ============================================================
   Company Italy — Main Stylesheet
   Merged from all components. Italian flag design system.
============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
  color: #2d3148;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --green:         #008C45;
  --white:         #FFFFFF;
  --red:           #CD212A;
  --dark:          #1a1f2e;
  --body:          #2d3148;
  --muted:         #6b7280;
  --subtle:        #9ca3af;
  --bg:            #ffffff;
  --surface-1:     #f5f6f8;
  --surface-2:     #f0f1f5;
  --border:        #e5e7eb;
  --border-dark:   #d1d5db;
  --green-light:   #e6f4ec;
  --green-mid:     #4ade80;
  --red-light:     #fce8e9;
  --overlay-green: rgba(0,80,35,0.82);
  --overlay-dark:  rgba(12,18,36,0.90);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-green:  0 12px 40px rgba(0,80,35,0.25);
}

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */

@keyframes flagShine {
  0%   { background-position: -200% center; }
  100% { background-position: 300% center; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatBadge {
  0%, 100% { transform: rotate(-10deg) translateY(0px); }
  50%       { transform: rotate(-10deg) translateY(-9px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(0,80,35,0.28), 0 0 0 1px rgba(0,140,69,0.15);
  }
  50% {
    box-shadow: 0 16px 56px rgba(0,80,35,0.48), 0 0 0 1.5px rgba(0,140,69,0.55);
  }
}

@keyframes cubeGlint {
  0%, 88%, 100% { opacity: 0; transform: translateX(-120%) rotate(20deg); }
  92%            { opacity: 1; }
  96%            { opacity: 0; transform: translateX(220%) rotate(20deg); }
}

@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  50%       { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

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

@keyframes accentShimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

@keyframes accentReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes spinCheck {
  from { transform: scale(0) rotate(-90deg); }
  to   { transform: scale(1) rotate(0deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineExtend {
  from { height: 0; opacity: 0; }
  to   { height: 32px; opacity: 1; }
}

/* ============================================================
   SCROLL ENTRANCE
============================================================ */

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.is-visible,
.animate-in-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   HEADER
============================================================ */

.ci-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(229,231,235,0.7);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.ci-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: #e5e7eb;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.ci-header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: height 0.25s ease;
}

.ci-header.is-scrolled .ci-header-inner { height: 60px; }

.ci-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}

.ci-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #0a2e14;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}
.ci-logo:hover .ci-logo-mark { transform: scale(1.05); }

.ci-logo-mark::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(0,140,69,0.42) 0% 33.33%,
    rgba(255,255,255,0.20) 33.33% 66.66%,
    rgba(205,33,42,0.38) 66.66% 100%);
  z-index: 0;
}
.ci-logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0; transition: opacity 0.3s ease; z-index: 2;
}
.ci-logo:hover .ci-logo-mark::after { opacity: 1; animation: flagShine 0.6s ease forwards; }

.ci-logo-mark span { position: relative; z-index: 1; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }

.ci-logo-text { display: flex; flex-direction: column; gap: 1px; }
.ci-logo-name { font-size: 15px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; line-height: 1.15; transition: color 0.18s ease; }
.ci-logo:hover .ci-logo-name { color: #008C45; }
.ci-logo-sub { font-size: 10.5px; font-weight: 500; color: #9ca3af; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; }

.ci-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.ci-nav-item { position: relative; }

.ci-nav-link, .ci-nav-trigger {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  font-size: 14.5px; font-weight: 500; color: #2d3148;
  text-decoration: none; border: none; background: none;
  cursor: pointer; border-radius: 8px; white-space: nowrap;
  position: relative;
  transition: color 0.18s ease, background 0.18s ease;
  font-family: 'DM Sans', sans-serif; letter-spacing: -0.01em;
}

.ci-nav-link::after, .ci-nav-trigger::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1.5px; background: #008C45;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1); border-radius: 2px;
}

.ci-nav-link:hover, .ci-nav-trigger:hover,
.ci-nav-item.is-open .ci-nav-trigger { color: #008C45; background: rgba(0,140,69,0.06); }
.ci-nav-link:hover::after, .ci-nav-trigger:hover::after,
.ci-nav-item.is-open .ci-nav-trigger::after { transform: scaleX(1); }

.ci-chevron { width: 14px; height: 14px; opacity: 0.55; transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), opacity 0.18s ease; flex-shrink: 0; }
.ci-nav-trigger:hover .ci-chevron, .ci-nav-item.is-open .ci-nav-trigger .ci-chevron { opacity: 1; }
.ci-nav-item.is-open .ci-chevron { transform: rotate(180deg); }

.ci-nav-link.is-active, .ci-nav-trigger.is-active { color: #008C45; }
.ci-nav-link.is-active::after, .ci-nav-trigger.is-active::after { transform: scaleX(1); }

.ci-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px; min-width: 240px; display: none;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.16,1,0.3,1);
}
.ci-dropdown--wide { min-width: 520px; padding: 16px; display: none; }
.ci-nav-item.is-open .ci-dropdown { display: block; }

.ci-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #fff;
  border-left: 1px solid #e5e7eb; border-top: 1px solid #e5e7eb; border-radius: 2px 0 0 0;
}

.ci-dropdown-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; text-decoration: none; color: #2d3148;
  font-size: 14px; font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease; white-space: nowrap;
}
.ci-dropdown-link:hover { background: rgba(0,140,69,0.07); color: #008C45; }
.ci-dropdown-link:hover .ci-dropdown-icon { background: #008C45; color: #fff; }

.ci-dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px; background: #f0f1f5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px; transition: background 0.15s ease, color 0.15s ease;
}
.ci-dropdown-label { flex: 1; }
.ci-dropdown-desc { font-size: 12px; font-weight: 400; color: #9ca3af; line-height: 1.3; margin-top: 1px; }

.ci-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.ci-dropdown-section-label {
  font-size: 11px; font-weight: 600; color: #9ca3af;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px 8px; grid-column: 1 / -1;
}
.ci-dropdown-divider { height: 1px; background: #f0f1f5; margin: 6px 0; grid-column: 1 / -1; }

.ci-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

.ci-phone-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: #6b7280;
  text-decoration: none; padding: 6px 10px; border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease; white-space: nowrap;
}
.ci-phone-link:hover { color: #008C45; background: rgba(0,140,69,0.06); }
.ci-phone-link svg { width: 14px; height: 14px; opacity: 0.7; transition: opacity 0.18s ease; }
.ci-phone-link:hover svg { opacity: 1; }

.ci-btn-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: #1a1f2e; color: #fff;
  border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; white-space: nowrap; letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s cubic-bezier(0.4,0,0.2,1);
}
.ci-btn-cta:hover { background: #008C45; box-shadow: 0 8px 28px rgba(0,140,69,0.38), 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-1px); }
.ci-btn-cta:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(0,140,69,0.28); }

.ci-btn-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
  animation: liveGlow 2s ease-in-out infinite; flex-shrink: 0;
}

.ci-hamburger {
  display: none; width: 40px; height: 40px; border: none; background: none;
  cursor: pointer; border-radius: 8px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; padding: 8px;
  transition: background 0.18s ease; flex-shrink: 0;
}
.ci-hamburger:hover { background: rgba(0,140,69,0.06); }
.ci-hamburger span { display: block; width: 20px; height: 2px; background: #1a1f2e; border-radius: 2px; transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease, width 0.2s ease; }
.ci-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ci-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.ci-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.ci-drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); overflow-y: auto;
  z-index: 199; border-top: 1px solid #e5e7eb;
}
.ci-header.is-scrolled ~ .ci-drawer, .ci-drawer.drawer-scrolled { top: 60px; }
.ci-drawer.is-open { display: block; animation: drawerIn 0.28s cubic-bezier(0.16,1,0.3,1); }

.ci-drawer-inner { max-width: 1150px; margin: 0 auto; padding: 24px 24px 48px; }
.ci-drawer-section { margin-bottom: 32px; }
.ci-drawer-section-title { font-size: 11px; font-weight: 600; color: #9ca3af; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; padding: 0 4px; }

.ci-drawer-link {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  border-radius: 12px; text-decoration: none; color: #1a1f2e;
  font-size: 15px; font-weight: 500; transition: background 0.15s ease, color 0.15s ease;
}
.ci-drawer-link:hover { background: rgba(0,140,69,0.07); color: #008C45; }

.ci-drawer-icon {
  width: 38px; height: 38px; border-radius: 10px; background: #f0f1f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0; transition: background 0.15s ease;
}
.ci-drawer-link:hover .ci-drawer-icon { background: rgba(0,140,69,0.12); }
.ci-drawer-link-text { flex: 1; }
.ci-drawer-link-sub { font-size: 12.5px; font-weight: 400; color: #9ca3af; margin-top: 1px; }
.ci-drawer-divider { height: 1px; background: #f0f1f5; margin: 8px 0 24px; }
.ci-drawer-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }

.ci-drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: #1a1f2e; color: #fff;
  border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s ease;
}
.ci-drawer-cta:hover { background: #008C45; }

.ci-drawer-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; background: #f5f6f8; color: #2d3148;
  border-radius: 12px; font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ci-drawer-phone:hover { background: rgba(0,140,69,0.08); color: #008C45; }

/* ============================================================
   HERO
============================================================ */

.ci-hero {
  position: relative; background: #ffffff;
  background-image: radial-gradient(ellipse 700px 600px at -80px -120px, rgba(0,140,69,0.035) 0%, transparent 70%);
  padding: 80px 24px 96px; overflow: hidden;
}

.ci-hero-watermark {
  position: absolute; left: -40px; bottom: 20px;
  pointer-events: none; user-select: none; z-index: 0;
  width: 560px; height: 200px; overflow: hidden;
}
.ci-hero-watermark svg { width: 100%; height: 100%; }
.ci-hero-watermark text { font-family: 'DM Sans', sans-serif; font-size: 280px; font-weight: 700; fill: rgba(0,140,69,0.032); letter-spacing: -0.04em; }

.ci-hero-inner {
  position: relative; z-index: 1; max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: center;
}

.ci-hero-content { display: flex; flex-direction: column; gap: 28px; }

.ci-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; }

.ci-hero-flag-pill {
  display: flex; height: 20px; width: 36px; border-radius: 4px;
  overflow: hidden; flex-shrink: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.ci-hero-flag-pill span { flex: 1; display: block; }
.ci-hero-flag-pill span:nth-child(1) { background: #008C45; }
.ci-hero-flag-pill span:nth-child(2) { background: #f8f8f8; }
.ci-hero-flag-pill span:nth-child(3) { background: #CD212A; }

.ci-hero-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #6b7280; letter-spacing: 0.01em; }

.ci-hero-h1 { font-size: clamp(42px, 5.2vw, 64px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.1; }

.ci-hero-em {
  display: block; font-family: 'Caveat', cursive;
  font-size: clamp(46px, 5.8vw, 70px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  background: linear-gradient(100deg, #008C45 20%, #4ade80 45%, #008C45 60%, #006632 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: accentShimmer 5s linear infinite;
}

.ci-hero-sub { font-size: 17px; font-weight: 400; color: #6b7280; line-height: 1.65; max-width: 480px; }

.ci-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

.ci-hero-cta-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px;
  background: #1a1f2e; color: #fff; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.26), 0 2px 6px rgba(0,0,0,0.12);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.15s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.ci-hero-cta-primary:hover { background: #008C45; box-shadow: 0 8px 28px rgba(0,140,69,0.40), 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-1px); }
.ci-hero-cta-primary:active { transform: translateY(0); }

.ci-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: liveGlow 2s ease-in-out infinite; }

.ci-hero-cta-ghost {
  display: inline-flex; align-items: center; gap: 7px; padding: 13px 20px;
  background: transparent; color: #1a1f2e; border: 1.5px solid #d1d5db;
  border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: -0.01em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.ci-hero-cta-ghost:hover { border-color: #008C45; color: #008C45; background: rgba(0,140,69,0.05); transform: translateY(-1px); }
.ci-hero-cta-ghost svg { width: 16px; height: 16px; transition: transform 0.2s cubic-bezier(0.4,0,0.2,1); }
.ci-hero-cta-ghost:hover svg { transform: translateX(3px); }

.ci-hero-stats { display: flex; align-items: center; gap: 0; padding-top: 8px; }
.ci-stat { display: flex; flex-direction: column; gap: 3px; padding: 0 24px 0 0; }
.ci-stat:first-child { padding-left: 0; }
.ci-stat-num { font-size: 26px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1; }
.ci-stat-suffix { font-size: 20px; font-weight: 700; color: #008C45; }
.ci-stat-label { font-size: 12.5px; font-weight: 500; color: #9ca3af; white-space: nowrap; }
.ci-stat-div { width: 1px; height: 36px; background: #e5e7eb; margin: 0 24px 0 0; flex-shrink: 0; }

.ci-hero-visual-wrap { position: relative; }

.ci-hero-badge {
  position: absolute; top: 28px; right: -18px;
  width: 90px; height: 90px; border-radius: 20px;
  z-index: 10; overflow: hidden; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 36px rgba(0,0,0,0.40), 0 3px 10px rgba(0,0,0,0.22);
  animation: floatBadge 3.5s ease-in-out infinite;
}
.ci-hero-badge::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #008C45 0% 33.33%, #f8f8f8 33.33% 66.66%, #CD212A 66.66% 100%);
  z-index: 0;
}
.ci-badge-glint {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  background-size: 200% 100%; z-index: 1;
  animation: cubeGlint 6s ease-in-out infinite;
}
.ci-badge-text { position: relative; z-index: 2; font-size: 22px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; text-shadow: 0 1px 3px rgba(255,255,255,0.6); }

.ci-hero-visual {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 500px; background: #0a2214;
  animation: borderGlow 4s ease-in-out infinite;
  display: flex; flex-direction: column;
}

.ci-hero-card-flag {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4;
  background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%);
}

.ci-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/hero/milan-galleria.jpg');
  background-size: cover; background-position: center;
}

.ci-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,20,14,0.30) 0%, rgba(6,14,9,0.55) 60%, rgba(4,10,6,0.85) 100%);
}

.ci-hero-card-inner {
  position: relative; z-index: 3; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px; padding-top: 32px; gap: 24px;
}

.ci-hero-card-brand { display: flex; align-items: center; gap: 12px; }

.ci-hero-card-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 700; color: #fff; letter-spacing: -0.02em;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.ci-hero-card-logo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,140,69,0.42) 0% 33.33%, rgba(255,255,255,0.12) 33.33% 66.66%, rgba(205,33,42,0.38) 66.66% 100%);
}
.ci-hero-card-logo span { position: relative; z-index: 1; }

.ci-hero-card-name { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.ci-hero-card-tag { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

.ci-hero-city-block { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ci-hero-city-live { display: flex; align-items: center; gap: 7px; }

.ci-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }

.ci-hero-city-label { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.ci-hero-city-name { font-size: 38px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.1; transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.4,0,0.2,1); }
.ci-hero-city-addr { font-family: 'Caveat', cursive; font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.01em; transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.4,0,0.2,1); }

.ci-hero-card-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.ci-chip {
  display: flex; align-items: center; gap: 5px; padding: 6px 11px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.70); white-space: nowrap;
}
.ci-chip-icon { font-size: 13px; line-height: 1; }

.ci-hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.8s ease 1.2s;
}
.ci-hero-scroll-hint.is-visible { opacity: 1; }
.ci-scroll-label { font-size: 10.5px; font-weight: 500; color: #d1d5db; letter-spacing: 0.1em; text-transform: uppercase; }
.ci-scroll-line { width: 1.5px; height: 32px; background: linear-gradient(to bottom, #d1d5db, transparent); border-radius: 2px; animation: scrollBounce 2s ease-in-out infinite; }

/* ============================================================
   SERVICES
============================================================ */

.ci-services { background: #f5f6f8; padding: 88px 24px 96px; }
.ci-services-inner { max-width: 1150px; margin: 0 auto; }

.ci-services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 52px; }

.ci-services-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ci-services-eyebrow-icon { width: 26px; height: 26px; border-radius: 6px; background: rgba(0,140,69,0.10); display: flex; align-items: center; justify-content: center; }
.ci-services-eyebrow-icon svg { width: 14px; height: 14px; color: #008C45; }
.ci-services-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #008C45; }

.ci-services-h2 { font-size: clamp(28px, 3.5vw, 36px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.2; }

.ci-services-header-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.ci-services-desc { font-size: 16px; color: #6b7280; line-height: 1.65; max-width: 400px; }

.ci-services-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 600; color: #1a1f2e;
  text-decoration: none; padding: 9px 16px; border: 1.5px solid #d1d5db; border-radius: 8px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.ci-services-all-link:hover { border-color: #008C45; color: #008C45; background: rgba(0,140,69,0.04); transform: translateY(-1px); }
.ci-services-all-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.ci-services-all-link:hover svg { transform: translateX(3px); }

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

.ci-service-card {
  position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column; gap: 16px;
  overflow: hidden; cursor: pointer; text-decoration: none; color: inherit;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.ci-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04); border-color: rgba(0,140,69,0.30); }

.ci-service-card::before {
  content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 3px; background: #008C45; border-radius: 0 2px 2px 0;
  transform: scaleY(0); transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.ci-service-card:hover::before { transform: scaleY(1); }

.ci-service-card--featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%);
  border-radius: 16px 16px 0 0;
}

.ci-scard-icon {
  width: 44px; height: 44px; border-radius: 11px; background: rgba(0,140,69,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.4,0,0.2,1);
}
.ci-service-card:hover .ci-scard-icon { background: #008C45; transform: scale(1.06); }

.ci-scard-body { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.ci-scard-title { font-size: 17px; font-weight: 600; color: #1a1f2e; letter-spacing: -0.02em; line-height: 1.25; transition: color 0.18s ease; }
.ci-service-card:hover .ci-scard-title { color: #008C45; }
.ci-scard-desc { font-size: 13.5px; font-weight: 400; color: #9ca3af; line-height: 1.55; }

.ci-scard-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600; color: #9ca3af; text-decoration: none;
  transition: color 0.18s ease; pointer-events: none; margin-top: auto; padding-top: 4px;
}
.ci-service-card:hover .ci-scard-link { color: #008C45; }
.ci-scard-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s cubic-bezier(0.4,0,0.2,1); }
.ci-service-card:hover .ci-scard-link svg { transform: translateX(3px); }

.ci-scard-tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 10.5px; font-weight: 600; color: #008C45; background: rgba(0,140,69,0.09);
  padding: 3px 8px; border-radius: 6px; letter-spacing: 0.04em; text-transform: uppercase; pointer-events: none;
}

/* ============================================================
   PROCESS / HOW IT WORKS
============================================================ */

.ci-process { background: #ffffff; padding: 88px 24px 96px; border-top: 1px solid #f0f1f5; }
.ci-process-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }

.ci-process-header { position: sticky; top: 96px; }
.ci-process-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.ci-process-flag-pill { display: flex; gap: 3px; align-items: center; }
.ci-process-flag-pill span { width: 18px; height: 4px; border-radius: 2px; }
.ci-process-flag-pill span:nth-child(1) { background: #008C45; }
.ci-process-flag-pill span:nth-child(2) { background: #d1d5db; }
.ci-process-flag-pill span:nth-child(3) { background: #CD212A; }
.ci-process-eyebrow-label { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #008C45; }
.ci-process-h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 16px; }
.ci-process-em { font-style: italic; color: #008C45; }
.ci-process-desc { font-size: 15px; color: #9ca3af; line-height: 1.65; margin-bottom: 28px; }
.ci-process-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #008C45; text-decoration: none; }
.ci-process-cta:hover { gap: 12px; }
.ci-process-cta svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.ci-process-cta:hover svg { transform: translateX(3px); }

.ci-process-steps { display: flex; flex-direction: column; }

.ci-step { display: grid; grid-template-columns: 56px 1fr; gap: 0; }
.ci-step-num-wrap { display: flex; flex-direction: column; align-items: center; padding-top: 2px; }
.ci-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #1a1f2e; color: #ffffff;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.ci-step:hover .ci-step-num { background: #008C45; box-shadow: 0 4px 16px rgba(0,140,69,0.30); }
.ci-step-line { width: 1px; flex: 1; min-height: 20px; background: #e5e7eb; margin: 10px 0; }

.ci-step-body { padding: 0 0 48px 20px; }
.ci-step:last-child .ci-step-body { padding-bottom: 0; }
.ci-step-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #008C45; background: rgba(0,140,69,0.08);
  border-radius: 6px; padding: 3px 9px; margin-bottom: 10px;
}
.ci-step-title { font-size: 18px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 8px; }
.ci-step-desc { font-size: 14.5px; color: #6b7280; line-height: 1.65; margin-bottom: 14px; }
.ci-step-items { display: flex; flex-direction: column; gap: 6px; }
.ci-step-items span { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #6b7280; line-height: 1.5; }
.ci-step-items span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #008C45; flex-shrink: 0; margin-top: 5px; }

@media (max-width: 900px) {
  .ci-process-inner { grid-template-columns: 1fr; gap: 48px; }
  .ci-process-header { position: static; }
}
@media (max-width: 560px) {
  .ci-process { padding: 64px 16px 72px; }
  .ci-step { grid-template-columns: 48px 1fr; }
  .ci-step-num { width: 38px; height: 38px; font-size: 11px; }
  .ci-step-body { padding: 0 0 40px 14px; }
}

/* ============================================================
   CITIES
============================================================ */

.ci-cities { background: #fff; padding: 88px 24px 96px; }
.ci-cities-inner { max-width: 1150px; margin: 0 auto; }

.ci-cities-header { text-align: center; margin-bottom: 56px; }

.ci-cities-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ci-cities-flag-pill { display: flex; height: 18px; width: 32px; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.14); }
.ci-cities-flag-pill span { flex: 1; }
.ci-cities-flag-pill span:nth-child(1) { background: #008C45; }
.ci-cities-flag-pill span:nth-child(2) { background: #f5f5f5; }
.ci-cities-flag-pill span:nth-child(3) { background: #CD212A; }
.ci-cities-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #6b7280; }

.ci-cities-h2 { font-size: clamp(28px, 3.5vw, 38px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 14px; }
.ci-cities-desc { font-size: 16px; color: #9ca3af; line-height: 1.65; max-width: 500px; margin: 0 auto; }

.ci-cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.ci-city-card {
  position: relative; border-radius: 24px; overflow: hidden; background: #0a2214;
  min-height: 420px; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
}
.ci-city-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,80,35,0.35), 0 4px 16px rgba(0,0,0,0.12); }

.ci-city-card-flag { position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4; background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%); }

.ci-city-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.ci-city-bg--milan { background-image: url('/images/cities/milan.jpg'); }
.ci-city-bg--rome  { background-image: url('/images/cities/rome.jpg'); }
.ci-city-bg--florence { background-image: url('/images/cities/florence.jpg'); }

.ci-city-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(6,14,9,0.10) 0%, rgba(6,14,9,0.58) 45%, rgba(4,10,6,0.94) 100%);
  transition: background 0.3s ease;
}
.ci-city-card:hover .ci-city-overlay { background: linear-gradient(to bottom, rgba(6,14,9,0.08) 0%, rgba(6,14,9,0.52) 45%, rgba(4,10,6,0.96) 100%); }

.ci-city-inner { position: relative; z-index: 3; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }

.ci-city-name { font-size: 32px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 6px; }
.ci-city-cciaa { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.ci-city-desc { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.55; margin-bottom: 18px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

.ci-city-address-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ci-city-pulse { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.ci-city-address { font-family: 'Caveat', cursive; font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.90); }

.ci-city-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.ci-city-tag { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); padding: 4px 10px; border-radius: 6px; white-space: nowrap; }

.ci-city-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: #4ade80; text-decoration: none; }
.ci-city-link svg { width: 14px; height: 14px; transition: transform 0.2s cubic-bezier(0.4,0,0.2,1); }
.ci-city-card:hover .ci-city-link svg { transform: translateX(4px); }

.ci-city-num { position: absolute; top: 22px; left: 22px; z-index: 4; font-family: 'Caveat', cursive; font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.70); }

.ci-city-price-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  background: rgba(0,0,0,0.30); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 28px; display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.ci-city-card:hover .ci-city-price-bar { transform: translateY(0); }
.ci-city-price-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.80); text-transform: uppercase; letter-spacing: 0.06em; }
.ci-city-price-value { font-size: 13.5px; font-weight: 600; color: #4ade80; }

.ci-cities-compare { margin-top: 36px; text-align: center; }
.ci-cities-compare-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; color: #1a1f2e; text-decoration: none;
  padding: 10px 20px; border: 1.5px solid #d1d5db; border-radius: 10px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.ci-cities-compare-link:hover { border-color: #008C45; color: #008C45; background: rgba(0,140,69,0.04); transform: translateY(-1px); }
.ci-cities-compare-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.ci-cities-compare-link:hover svg { transform: translateX(3px); }

/* ============================================================
   CTA
============================================================ */

.ci-cta { padding: 80px 24px 88px; background: #f5f6f8; }
.ci-cta-inner { max-width: 1150px; margin: 0 auto; }

.ci-cta-card {
  position: relative; border-radius: 28px; overflow: hidden; background: #0a2214;
  animation: borderGlow 4s ease-in-out infinite;
  display: grid; grid-template-columns: 1fr 360px; min-height: 320px;
}

.ci-cta-flag { position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4; background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%); }

.ci-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/cta/italy-architecture.jpg');
  background-size: cover; background-position: center;
  opacity: 0.12;
}

.ci-cta-watermark { position: absolute; right: 340px; bottom: -30px; font-size: 240px; font-weight: 700; color: rgba(0,140,69,0.05); letter-spacing: -0.05em; line-height: 1; pointer-events: none; user-select: none; z-index: 1; }

.ci-cta-left { position: relative; z-index: 3; padding: 48px 40px 48px 48px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }

.ci-cta-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.ci-cta-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: liveGlow 2s ease-in-out infinite; }
.ci-cta-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.55); }

.ci-cta-h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.18; }
.ci-cta-em { font-family: 'Caveat', cursive; font-style: normal; font-weight: 700; color: #4ade80; letter-spacing: -0.02em; }
.ci-cta-sub { font-size: 15.5px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 400px; }

.ci-cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.ci-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px;
  background: #008C45; color: #fff; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -0.01em;
  box-shadow: 0 6px 24px rgba(0,140,69,0.44), 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s cubic-bezier(0.4,0,0.2,1); white-space: nowrap;
}
.ci-cta-btn-primary:hover { background: #00a352; box-shadow: 0 10px 32px rgba(0,140,69,0.55), 0 4px 12px rgba(0,0,0,0.18); transform: translateY(-1px); }
.ci-cta-btn-primary:active { transform: translateY(0); }

.ci-cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px; padding: 12px 20px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.16); border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease; white-space: nowrap;
}
.ci-cta-btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.30); color: #fff; transform: translateY(-1px); }
.ci-cta-btn-ghost svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.ci-cta-btn-ghost:hover svg { transform: translateX(3px); }

.ci-cta-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ci-cta-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.40); }
.ci-cta-trust-item svg { width: 14px; height: 14px; color: #4ade80; flex-shrink: 0; }

.ci-cta-right { position: relative; z-index: 3; padding: 48px 40px 48px 32px; display: flex; flex-direction: column; justify-content: center; gap: 20px; border-left: 1px solid rgba(255,255,255,0.07); }

.ci-cta-badge {
  position: absolute; top: 32px; right: 32px;
  width: 72px; height: 72px; border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.36), 0 2px 8px rgba(0,0,0,0.18);
  animation: floatBadge 3.5s ease-in-out infinite;
}
.ci-cta-badge::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, #008C45 0% 33.33%, #f8f8f8 33.33% 66.66%, #CD212A 66.66% 100%); }
.ci-cta-badge-glint { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.50) 50%, transparent 70%); background-size: 200% 100%; animation: cubeGlint 6s ease-in-out infinite; }
.ci-cta-badge-text { position: relative; z-index: 2; font-size: 18px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; text-shadow: 0 1px 2px rgba(255,255,255,0.5); }

.ci-cta-checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 80px; }
.ci-cta-check { display: flex; align-items: flex-start; gap: 10px; }
.ci-cta-check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(0,140,69,0.18); border: 1px solid rgba(0,140,69,0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ci-cta-check-icon svg { width: 10px; height: 10px; color: #4ade80; }
.ci-cta-check-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.45; }

.ci-cta-response { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,140,69,0.14); border: 1px solid rgba(0,140,69,0.25); border-radius: 8px; padding: 8px 12px; margin-top: 8px; }
.ci-cta-response-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: liveGlow 2s ease-in-out infinite; }
.ci-cta-response-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }
.ci-cta-response-text strong { color: #4ade80; font-weight: 600; }

/* ============================================================
   FAQ
============================================================ */

.ci-faq { background: #f5f6f8; padding: 88px 24px 96px; }
.ci-faq-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }

.ci-faq-header { position: sticky; top: 88px; }
.ci-faq-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ci-faq-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #008C45; flex-shrink: 0; }
.ci-faq-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #008C45; }

.ci-faq-h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 16px; }
.ci-faq-sub { font-size: 15px; color: #9ca3af; line-height: 1.6; margin-bottom: 28px; }

.ci-faq-ask {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  background: #1a1f2e; color: #fff; border-radius: 9px;
  font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: -0.01em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.ci-faq-ask:hover { background: #008C45; box-shadow: 0 6px 20px rgba(0,140,69,0.35); transform: translateY(-1px); }
.ci-faq-ask-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: liveGlow 2s ease-in-out infinite; }

.ci-faq-progress { margin-top: 32px; display: flex; flex-direction: column; gap: 6px; }
.ci-faq-progress-label { font-size: 11.5px; font-weight: 500; color: #d1d5db; letter-spacing: 0.06em; text-transform: uppercase; }
.ci-faq-progress-bar { height: 3px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.ci-faq-progress-fill { height: 100%; background: #008C45; border-radius: 2px; width: 0%; transition: width 0.4s cubic-bezier(0.4,0,0.2,1); }

.ci-faq-list { display: flex; flex-direction: column; gap: 0; }
.ci-faq-item { border-bottom: 1px solid #e5e7eb; }
.ci-faq-item:first-child { border-top: 1px solid #e5e7eb; }

.ci-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; }
.ci-faq-q-text { font-size: 16px; font-weight: 600; color: #1a1f2e; line-height: 1.35; letter-spacing: -0.015em; transition: color 0.18s ease; flex: 1; }
.ci-faq-item.is-open .ci-faq-q-text { color: #008C45; }

.ci-faq-icon { width: 28px; height: 28px; border-radius: 8px; background: #f0f1f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s ease, transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.ci-faq-item.is-open .ci-faq-icon { background: rgba(0,140,69,0.12); transform: rotate(45deg); }
.ci-faq-icon svg { width: 14px; height: 14px; color: #6b7280; transition: color 0.2s ease; }
.ci-faq-item.is-open .ci-faq-icon svg { color: #008C45; }

.ci-faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.ci-faq-item.is-open .ci-faq-a { max-height: 600px; }
.ci-faq-a-inner { padding: 0 0 24px; }
.ci-faq-a-text { font-size: 15px; font-weight: 400; color: #6b7280; line-height: 1.7; }
.ci-faq-a-text strong { color: #1a1f2e; font-weight: 600; }
.ci-faq-a-link { color: #008C45; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(0,140,69,0.30); transition: border-color 0.18s ease; }
.ci-faq-a-link:hover { border-bottom-color: #008C45; }
.ci-faq-separator { padding: 20px 0 8px; font-size: 11px; font-weight: 600; color: #d1d5db; letter-spacing: 0.09em; text-transform: uppercase; }

/* ============================================================
   CONTACT
============================================================ */

.ci-contact { background: #f5f6f8; padding: 88px 24px 96px; }
.ci-contact-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }

.ci-contact-info { display: flex; flex-direction: column; gap: 32px; }
.ci-contact-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.ci-contact-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: liveGlow 2s ease-in-out infinite; flex-shrink: 0; }
.ci-contact-eyebrow-text { font-family: 'Caveat', cursive; font-size: 18px; font-weight: 600; color: #008C45; }

.ci-contact-h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.2; }
.ci-contact-sub { font-size: 15px; color: #9ca3af; line-height: 1.65; }

.ci-contact-offices { display: flex; flex-direction: column; gap: 12px; }
.ci-office-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
}
.ci-office-card:hover { border-color: rgba(0,140,69,0.30); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-1px); }
.ci-office-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,140,69,0.08); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.ci-office-city { font-size: 14.5px; font-weight: 600; color: #1a1f2e; letter-spacing: -0.01em; margin-bottom: 3px; }
.ci-office-addr { font-family: 'Caveat', cursive; font-size: 15px; font-weight: 600; color: #9ca3af; }

.ci-contact-persona {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.ci-persona-photo {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top;
  flex-shrink: 0; border: 2px solid rgba(0,140,69,0.15);
}
.ci-persona-body { display: flex; flex-direction: column; gap: 3px; }
.ci-persona-name { font-size: 15px; font-weight: 600; color: #1a1f2e; letter-spacing: -0.01em; }
.ci-persona-role { font-size: 13px; color: #9ca3af; }
.ci-persona-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: #008C45;
  background: rgba(0,140,69,0.08); border-radius: 6px; padding: 3px 8px; margin-top: 2px;
  letter-spacing: 0.03em; text-transform: uppercase;
}

.ci-contact-links { display: flex; flex-direction: column; gap: 10px; }
.ci-contact-link {
  display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: #6b7280;
  text-decoration: none; padding: 10px 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ci-contact-link:hover { color: #008C45; border-color: rgba(0,140,69,0.25); background: rgba(0,140,69,0.03); }
.ci-contact-link svg { width: 16px; height: 16px; flex-shrink: 0; color: #9ca3af; transition: color 0.2s ease; }
.ci-contact-link:hover svg { color: #008C45; }

.ci-contact-form-wrap { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.ci-form-title { font-size: 20px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; margin-bottom: 6px; }
.ci-form-sub { font-size: 14px; color: #9ca3af; margin-bottom: 28px; }

.ci-form { display: flex; flex-direction: column; gap: 18px; }
.ci-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ci-form-field { display: flex; flex-direction: column; gap: 6px; }
.ci-form-field--full { grid-column: 1 / -1; }
.ci-form-label { font-size: 13px; font-weight: 600; color: #1a1f2e; letter-spacing: -0.005em; }
.ci-form-label span { color: #CD212A; margin-left: 2px; }

.ci-form-input, .ci-form-select, .ci-form-textarea {
  width: 100%; padding: 11px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 400; color: #1a1f2e;
  background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 9px;
  outline: none; transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  appearance: none; -webkit-appearance: none;
}
.ci-form-input::placeholder, .ci-form-textarea::placeholder { color: #d1d5db; }
.ci-form-input:hover, .ci-form-select:hover, .ci-form-textarea:hover { border-color: #d1d5db; background: #f5f6f8; }
.ci-form-input:focus, .ci-form-select:focus, .ci-form-textarea:focus { border-color: #008C45; background: #fff; box-shadow: 0 0 0 3px rgba(0,140,69,0.10); }
.ci-form-input.is-error, .ci-form-select.is-error, .ci-form-textarea.is-error { border-color: #CD212A; background: rgba(205,33,42,0.03); }
.ci-form-error { font-size: 12px; font-weight: 500; color: #CD212A; display: none; }
.ci-form-field.has-error .ci-form-error { display: block; }
.ci-form-field.has-error .ci-form-input, .ci-form-field.has-error .ci-form-select, .ci-form-field.has-error .ci-form-textarea { border-color: #CD212A; }

.ci-form-select-wrap { position: relative; }
.ci-form-select-arrow { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #9ca3af; }
.ci-form-select-arrow svg { width: 14px; height: 14px; }
.ci-form-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.ci-form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.ci-form-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.ci-form-check-box { width: 18px; height: 18px; border: 1.5px solid #d1d5db; border-radius: 5px; background: #f9fafb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; transition: border-color 0.18s ease, background 0.18s ease; }
.ci-form-check input:checked ~ .ci-form-check-box { background: #008C45; border-color: #008C45; }
.ci-form-check-box svg { width: 10px; height: 10px; color: #fff; opacity: 0; transition: opacity 0.15s ease; }
.ci-form-check input:checked ~ .ci-form-check-box svg { opacity: 1; }
.ci-form-check-text { font-size: 13px; font-weight: 400; color: #9ca3af; line-height: 1.55; }
.ci-form-check-text a { color: #2d3148; font-weight: 500; text-decoration: underline; text-decoration-color: #d1d5db; transition: color 0.15s ease, text-decoration-color 0.15s ease; }
.ci-form-check-text a:hover { color: #008C45; text-decoration-color: #008C45; }

.ci-form-submit {
  width: 100%; padding: 14px; background: #1a1f2e; color: #fff;
  border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.10);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.ci-form-submit:hover:not(:disabled) { background: #008C45; box-shadow: 0 8px 28px rgba(0,140,69,0.40), 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-1px); }
.ci-form-submit:active:not(:disabled) { transform: translateY(0); }
.ci-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.ci-form-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
.ci-form-submit.is-loading .ci-form-spinner { display: block; }
.ci-form-submit.is-loading .ci-form-submit-text { display: none; }

.ci-form-submit-error { margin-top: 12px; padding: 12px 16px; background: #fce8e9; border: 1px solid rgba(205,33,42,0.2); border-radius: 10px; font-size: 13.5px; color: #CD212A; line-height: 1.5; }

.ci-form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 40px 24px; gap: 16px; }
.ci-form-success.is-visible { display: flex; }
.ci-form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,140,69,0.10); display: flex; align-items: center; justify-content: center; animation: spinCheck 0.5s cubic-bezier(0.16,1,0.3,1) forwards; }
.ci-form-success-icon svg { width: 24px; height: 24px; color: #008C45; }
.ci-form-success-title { font-size: 20px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.02em; }
.ci-form-success-sub { font-size: 15px; color: #9ca3af; line-height: 1.6; max-width: 340px; }

/* ============================================================
   FOOTER
============================================================ */

.footer-section { position: relative; overflow: hidden; background: #ffffff; padding: 64px 24px 0; }

.footer-wrapper {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 350px 1fr; gap: 16px;
  align-items: stretch; position: relative; z-index: 1;
}

.footer-left {
  position: relative; min-height: 340px; border-radius: 28px; padding: 32px;
  overflow: hidden; background: #0a2e14;
  display: flex; flex-direction: column; justify-content: space-between;
  animation: borderGlow 4s ease-in-out infinite;
  opacity: 0; transform: translate(-20px, 24px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.footer-left.is-visible { opacity: 1; transform: translate(0,0); }

.footer-left-flag { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%); z-index: 4; }

.footer-left-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }

.footer-left-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,80,35,0.80) 0%, rgba(10,15,32,0.91) 65%, rgba(0,40,18,0.96) 100%); z-index: 1; pointer-events: none; }
.footer-left-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(0,0,0,0.32), transparent); z-index: 2; pointer-events: none; }

.footer-logo { display: flex; align-items: center; gap: 11px; position: relative; z-index: 3; }
.footer-logo-mark { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.78); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; flex-shrink: 0; }
.footer-logo-mark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,140,69,0.45) 0% 33%, rgba(255,255,255,0.18) 33% 66%, rgba(205,33,42,0.45) 66% 100%); z-index: 0; }
.footer-logo-mark::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); transform: rotate(20deg); animation: flagShine 5s ease-in-out infinite; z-index: 1; }
.footer-logo-mark-text { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: white; letter-spacing: -0.03em; position: relative; z-index: 2; line-height: 1; user-select: none; }
.footer-logo-text { display: flex; flex-direction: column; gap: 1px; }
.footer-logo-name { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: white; letter-spacing: -0.025em; line-height: 1.1; }
.footer-logo-sub { font-family: 'DM Sans', sans-serif; font-size: 9.5px; font-weight: 500; color: rgba(255,255,255,0.52); letter-spacing: 0.10em; text-transform: uppercase; }

.footer-tagline-container { margin-top: auto; margin-bottom: 28px; position: relative; z-index: 3; }
.footer-tagline { font-size: 19px; font-weight: 400; color: white; line-height: 1.45; }
.footer-tagline span { color: rgba(255,255,255,0.62); }

.footer-city-cycle { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-city-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
.footer-city-info { overflow: hidden; }

#cityName { display: block; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: white; transition: opacity 0.32s ease, transform 0.32s ease; }
#cityAddr { display: block; font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 400; color: rgba(255,255,255,0.52); margin-top: 1px; transition: opacity 0.32s ease, transform 0.32s ease; }

.footer-social-row { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; position: relative; z-index: 3; }
.footer-social-label { font-family: 'Caveat', cursive; font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.88); letter-spacing: 0.3px; white-space: nowrap; }
.footer-social-icons { display: flex; gap: 7px; }

.social-icon {
  width: 36px; height: 36px; border-radius: 9px; background: #0e1014;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.38), 0 2px 6px rgba(0,0,0,0.22);
  cursor: pointer; text-decoration: none; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.social-icon svg { width: 15px; height: 15px; fill: white; }
.social-icon:hover { background: #008C45; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,140,69,0.45), 0 4px 10px rgba(0,0,0,0.25); }

.footer-right {
  background: #f0f1f5; border-radius: 28px; padding: 40px; overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; justify-content: space-between; position: relative;
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 0.18s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.18s;
}
.footer-right.is-visible { opacity: 1; transform: translateX(0); }

.footer-lucky-graphic { position: absolute; top: -36px; right: 40px; z-index: 10; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }

.lucky-cube {
  width: 96px; height: 96px; border-radius: 22px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  animation: floatBadge 3.5s ease-in-out infinite;
  box-shadow: inset 3px 3px 8px rgba(255,255,255,0.32), inset -3px -3px 12px rgba(0,0,0,0.20), 8px 14px 28px rgba(0,80,35,0.38), 2px 4px 12px rgba(0,0,0,0.18);
}
.lucky-cube::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, #008C45 0% 33.33%, #f8f8f8 33.33% 66.66%, #CD212A 66.66% 100%); z-index: 0; }
.lucky-cube::after { content: ''; position: absolute; top: -50%; left: 0; width: 30%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.50), transparent); transform: rotate(20deg); z-index: 2; animation: cubeGlint 6s ease-in-out infinite 1s; }

.lucky-cube-mark { position: relative; z-index: 3; font-family: 'DM Sans', sans-serif; font-size: 40px; font-weight: 700; color: #1a1f2e; letter-spacing: -0.04em; transform: rotate(10deg); text-shadow: 0 1px 0 rgba(255,255,255,0.9), 0 2px 6px rgba(0,0,0,0.22); line-height: 1; user-select: none; }

.lucky-text-row { display: flex; align-items: center; gap: 6px; transform: rotate(-4deg); margin-top: 4px; }
.lucky-arrow { width: 22px; height: 22px; color: #9ca3af; flex-shrink: 0; }
.lucky-arrow path { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lucky-text { font-family: 'Caveat', cursive; font-size: 20px; font-weight: 600; color: #9ca3af; white-space: nowrap; }

.footer-nav-cols { display: flex; gap: 72px; padding-top: 8px; }
.footer-col-title { font-family: 'Caveat', cursive; font-size: 24px; font-weight: 600; font-style: italic; color: #9ca3af; margin-bottom: 18px; }

.footer-col a { display: block; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: #111827; margin-bottom: 14px; text-decoration: none; position: relative; transition: color 0.2s ease; width: fit-content; }
.footer-col a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: #008C45; transition: width 0.22s cubic-bezier(0.4,0,0.2,1); }
.footer-col a:hover { color: #008C45; }
.footer-col a:hover::after { width: 100%; }

.footer-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 48px; }
.footer-copyright { font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 500; color: #9ca3af; }

.footer-cta-mini { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.footer-cta-mini h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400; color: #6b7280; line-height: 1.45; text-align: right; }
.footer-cta-mini h4 strong { display: block; font-size: 19px; font-weight: 700; color: #111827; }

.footer-subscribe-row { display: flex; width: 310px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.footer-subscribe-row input[type="email"] { flex: 1; padding: 11px 14px; background: transparent; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: #111827; min-width: 0; }
.footer-subscribe-row input[type="email"]::placeholder { color: #9ca3af; }
.footer-subscribe-row button { padding: 11px 20px; background: #111214; color: white; border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.15); transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease; }
.footer-subscribe-row button:hover { background: #008C45; box-shadow: 0 8px 28px rgba(0,140,69,0.38), 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-1px); }

.footer-watermark { max-width: 1150px; margin: -60px auto 0; pointer-events: none; user-select: none; position: relative; z-index: 0; line-height: 0; }
.footer-watermark svg { display: block; width: 100%; height: auto; overflow: visible; }
.footer-watermark text { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: -0.03em; fill: rgba(0,0,0,0.04); }

/* Header spacer (pushes content below fixed header) */
.ci-page-start { height: 68px; }

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {
  .ci-hero-inner { grid-template-columns: 1fr 390px; gap: 36px; }
}

@media (max-width: 900px) {
  /* Header */
  .ci-nav { display: none; }
  .ci-phone-link { display: none; }
  .ci-btn-cta { display: none; }
  .ci-hamburger { display: flex; }
  .ci-nav-actions { margin-left: auto; }

  /* Services */
  .ci-services-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .ci-services-desc { max-width: 100%; }
  .ci-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .ci-contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  /* Hero */
  .ci-hero { padding: 60px 24px 80px; }
  .ci-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .ci-hero-visual-wrap { order: 2; }
  .ci-hero-content { order: 1; gap: 24px; }
  .ci-hero-sub { max-width: 100%; }
  .ci-hero-visual { min-height: 320px; }
  .ci-hero-badge { top: 20px; right: 16px; width: 76px; height: 76px; border-radius: 16px; }
  .ci-hero-city-name { font-size: 30px; }
  .ci-hero-scroll-hint { display: none; }

  /* Cities */
  .ci-cities-grid { grid-template-columns: 1fr; gap: 16px; }
  .ci-city-card { min-height: 280px; }
  .ci-city-price-bar { transform: translateY(0); }

  /* CTA */
  .ci-cta-card { grid-template-columns: 1fr; }
  .ci-cta-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 40px 40px; }
  .ci-cta-watermark { right: -20px; font-size: 160px; bottom: -10px; }

  /* FAQ */
  .ci-faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .ci-faq-header { position: static; }
  .ci-faq-progress { display: none; }

  /* Footer */
  .footer-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-left { min-height: auto; }
}

@media (max-width: 560px) {
  /* Hero */
  .ci-hero { padding: 48px 16px 64px; }
  .ci-hero-actions { flex-direction: column; align-items: flex-start; }
  .ci-hero-cta-primary, .ci-hero-cta-ghost { width: 100%; justify-content: center; }
  .ci-stat-div { margin: 0 16px 0 0; }
  .ci-stat { padding-right: 16px; }
  .ci-stat-num { font-size: 22px; }
  .ci-hero-watermark { display: none; }

  /* Services */
  .ci-services { padding: 64px 16px 72px; }
  .ci-services-grid { grid-template-columns: 1fr; gap: 12px; }
  .ci-service-card { flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px; }
  .ci-scard-link { display: none; }

  /* Cities */
  .ci-cities { padding: 64px 16px 72px; }
  .ci-city-card { min-height: 260px; }
  .ci-city-inner { padding: 20px; }

  /* CTA */
  .ci-cta { padding: 60px 16px 72px; }
  .ci-cta-left { padding: 36px 24px 28px; }
  .ci-cta-right { padding: 28px 24px 36px; }
  .ci-cta-actions { flex-direction: column; align-items: flex-start; }
  .ci-cta-btn-primary, .ci-cta-btn-ghost { width: 100%; justify-content: center; }
  .ci-cta-badge { top: 24px; right: 24px; width: 60px; height: 60px; border-radius: 14px; }
  .ci-cta-checklist { margin-top: 64px; }

  /* FAQ */
  .ci-faq { padding: 64px 16px 72px; }
  .ci-faq-q-text { font-size: 15px; }

  /* Contact */
  .ci-contact { padding: 64px 16px 72px; }
  .ci-contact-form-wrap { padding: 28px 20px; }
  .ci-form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-right { padding: 24px; }
  .footer-nav-cols { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-cta-mini { align-items: flex-start; width: 100%; }
  .footer-cta-mini h4 { text-align: left; }
  .footer-subscribe-row { width: 100%; }
  .footer-lucky-graphic { right: 12px; top: -28px; }
  .lucky-cube { width: 72px; height: 72px; border-radius: 16px; }
  .lucky-cube-mark { font-size: 30px; }
}

@media (max-width: 480px) {
  .ci-header-inner { padding: 0 16px; }
  .ci-logo-sub { display: none; }
}

/* ============================================================
   ARTICLE LAYOUT (internal pages)
============================================================ */
.ci-article { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }

.ci-article .article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; font-size: 13px; color: #9ca3af; flex-wrap: wrap; }
.ci-article .article-meta span { display: flex; align-items: center; gap: 5px; }
.ci-article .article-meta svg { opacity: 0.7; }

.ci-article h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.03em; line-height: 1.18; margin-bottom: 20px; }
.ci-article h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; color: #1a1f2e; letter-spacing: -0.025em; line-height: 1.25; margin: 48px 0 14px; }
.ci-article h3 { font-size: clamp(17px, 2.2vw, 20px); font-weight: 600; color: #1a1f2e; letter-spacing: -0.02em; line-height: 1.3; margin: 32px 0 10px; }
.ci-article h4 { font-size: 16px; font-weight: 600; color: #1a1f2e; margin: 24px 0 8px; }
.ci-article p { font-size: 15.5px; color: #6b7280; line-height: 1.72; margin-bottom: 16px; }
.ci-article ul, .ci-article ol { margin: 0 0 16px 20px; }
.ci-article li { font-size: 15.5px; color: #6b7280; line-height: 1.65; margin-bottom: 5px; }
.ci-article strong { color: #2d3148; font-weight: 600; }
.ci-article em { font-style: italic; }
.ci-article a { color: #008C45; text-decoration: none; border-bottom: 1px solid rgba(0,140,69,0.25); transition: border-color 0.18s ease; }
.ci-article a:hover { border-bottom-color: #008C45; }
.ci-article code { font-family: 'Courier New', monospace; font-size: 13.5px; background: #f0f1f5; padding: 2px 6px; border-radius: 4px; color: #2d3148; }
.ci-article hr { border: none; border-top: 1px solid #e5e7eb; margin: 40px 0; }
.ci-article blockquote { border-left: 3px solid #008C45; padding: 12px 20px; background: rgba(0,140,69,0.04); border-radius: 0 8px 8px 0; margin: 24px 0; }
.ci-article blockquote p { margin: 0; color: #6b7280; font-style: italic; }

.ci-table-wrap { overflow-x: auto; margin: 24px 0 28px; border-radius: 12px; border: 1px solid #e5e7eb; }
.ci-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ci-table-wrap th { text-align: left; padding: 11px 14px; font-weight: 600; color: #1a1f2e; background: #f5f6f8; border-bottom: 2px solid #e5e7eb; white-space: nowrap; }
.ci-table-wrap td { padding: 10px 14px; color: #6b7280; border-bottom: 1px solid #f0f1f5; vertical-align: top; line-height: 1.5; }
.ci-table-wrap tr:last-child td { border-bottom: none; }
.ci-table-wrap tr:hover td { background: rgba(0,140,69,0.02); }

.ci-article-disclaimer { margin-top: 48px; padding: 16px 20px; background: #f5f6f8; border-left: 3px solid #d1d5db; border-radius: 0 8px 8px 0; font-size: 12.5px; color: #9ca3af; line-height: 1.6; }

/* ── Breadcrumbs ── */
.ci-breadcrumb { max-width: 1150px; margin: 0 auto; padding: 16px 24px 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ci-breadcrumb a, .ci-breadcrumb span { font-size: 13px; font-weight: 500; color: #9ca3af; text-decoration: none; transition: color 0.15s ease; }
.ci-breadcrumb a:hover { color: #008C45; }
.ci-breadcrumb-sep { color: #d1d5db; font-size: 12px; }
.ci-breadcrumb-current { color: #6b7280 !important; }

@media (max-width: 560px) {
  .ci-article { padding: 40px 16px 64px; }
  .ci-table-wrap { border-radius: 8px; }
}

/* ── Hero card & trust text fixes ───────────────────────────── */
.ci-hero-card-tag { color: rgba(255,255,255,0.82) !important; }
.ci-hero-city-label { color: rgba(255,255,255,0.82) !important; }
.ci-hero-city-addr { color: rgba(255,255,255,0.88) !important; }
.ci-cta-trust-item { color: rgba(255,255,255,0.88) !important; }
.ci-cta-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.ci-cta-trust-item svg { width: 14px !important; height: 14px !important; flex-shrink: 0; }

/* ── Page hero (internal pages) ─────────────────────────────── */
.ci-page-hero {
  position: relative; min-height: 340px; display: flex;
  align-items: flex-end; overflow: hidden;
}
.ci-page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.ci-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,12,0.20) 0%, rgba(8,18,12,0.82) 100%);
}
.ci-page-hero-flag {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(to right, #008C45 0% 33.33%, #ffffff 33.33% 66.66%, #CD212A 66.66% 100%);
}
.ci-page-hero-inner {
  position: relative; z-index: 3; max-width: 1150px; margin: 0 auto;
  width: 100%; padding: 48px 24px 52px;
}
.ci-page-hero-category {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px;
  font-weight: 600; color: #4ade80; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.ci-page-hero-category::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
}
.ci-page-hero-h1 {
  font-size: clamp(24px, 3.5vw, 42px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.18; margin: 0 0 14px;
  max-width: 720px; text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.ci-page-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.6;
  max-width: 600px; margin: 0 0 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.ci-page-hero-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ci-page-hero-chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px;
  font-weight: 500; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.16);
  padding: 4px 10px; border-radius: 6px;
}
@media (max-width: 768px) {
  .ci-page-hero { min-height: 260px; }
  .ci-page-hero-inner { padding: 36px 16px 40px; }
  .ci-page-hero-h1 { font-size: 24px; }
}

/* ── Infographics ────────────────────────────────────────────── */
.ci-infographic {
  background: #f8f9fb; border-radius: 16px; border: 1px solid #e5e7eb;
  padding: 28px 28px 24px; margin: 36px 0;
}
.ci-infographic-title {
  font-size: 11px; font-weight: 700; color: #008C45; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.ci-infographic-title::before {
  content: ''; width: 20px; height: 3px; background: #008C45; border-radius: 2px; flex-shrink: 0;
}
/* Steps */
.ci-infographic-steps { display: flex; gap: 0; }
.ci-infographic-step { flex: 1; text-align: center; position: relative; padding: 0 6px; }
.ci-infographic-step-num {
  width: 38px; height: 38px; border-radius: 50%; background: #008C45; color: #fff;
  font-size: 15px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 10px; position: relative; z-index: 2;
}
.ci-infographic-step::before {
  content: ''; position: absolute; top: 19px;
  left: calc(50% + 19px); right: calc(-50% + 19px);
  height: 2px; background: #d1d5db; z-index: 1;
}
.ci-infographic-step:last-child::before { display: none; }
.ci-infographic-step-label { font-size: 12px; font-weight: 600; color: #1a1f2e; line-height: 1.3; margin-bottom: 3px; }
.ci-infographic-step-time { font-size: 10.5px; color: #9ca3af; }
/* Stats */
.ci-infographic-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; }
.ci-infographic-stat {
  background: #fff; border-radius: 10px; border: 1px solid #e5e7eb;
  padding: 16px 12px; text-align: center;
}
.ci-infographic-stat-val {
  font-size: 26px; font-weight: 700; color: #008C45;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
}
.ci-infographic-stat-label { font-size: 10.5px; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
/* Rows */
.ci-infographic-rows { display: flex; flex-direction: column; gap: 8px; }
.ci-infographic-row {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 8px; border: 1px solid #e5e7eb; padding: 10px 14px;
}
.ci-infographic-row-label { font-size: 12.5px; font-weight: 600; color: #1a1f2e; min-width: 170px; }
.ci-infographic-row-bar-wrap { flex: 1; height: 5px; background: #f0f1f5; border-radius: 3px; overflow: hidden; }
.ci-infographic-row-bar { height: 100%; background: #008C45; border-radius: 3px; }
.ci-infographic-row-val { font-size: 12.5px; font-weight: 700; color: #008C45; min-width: 48px; text-align: right; }
@media (max-width: 600px) {
  .ci-infographic-steps { flex-direction: column; gap: 14px; }
  .ci-infographic-step::before { display: none; }
  .ci-infographic-step { display: flex; align-items: center; gap: 12px; text-align: left; }
  .ci-infographic-step-num { margin: 0; flex-shrink: 0; }
  .ci-infographic-stats { grid-template-columns: repeat(2, 1fr); }
  .ci-infographic-row { flex-wrap: wrap; }
  .ci-infographic-row-label { min-width: 100%; }
}
