*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --steel: #1B3E6F;
  --steel-mid: #2D5FA0;
  --steel-light: #E8F0FA;
  --warm-white: #F7F6F2;
  --slate: #3C4A5C;
  --slate-light: #6B7A8E;
  --gold-dark: #8B6010;
  --gold-mid: #C8973A;
  --gold-light: #F0CC7A;
  --gold-pale: #FDF3E3;
  --accent: #1B3E6F;
  --accent-light: #E8F0FA;
  --white: #FFFFFF;
  --border: #E8DCC8;
  --text: #1A2332;
/*  --gold-gradient: linear-gradient(135deg, #7A5210 0%, #C8973A 50%, #F0CC7A 100%);*/
  --gold-gradient: linear-gradient(135deg, #7A5210 0%, #C8973A 50%, #EDDD53 90%);
  --gold-gradient-btn: linear-gradient(135deg, #8B6010 0%, #D4A445 100%);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-logo-text em { font-style: normal; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-mid); }

.nav-cta {
  background: var(--gold-gradient-btn);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; background: var(--gold-gradient-btn) !important; }

/* HERO */
.hero {
  position: relative;
/*  background: linear-gradient(135deg, #5C3A08 0%, #8B6010 35%, #C8973A 70%, #E8BC5A 100%); */
  background: linear-gradient(135deg, #5C3A08 0%, #8B6010 35%, #C8973A 60%, #EDDD53 90%);
  overflow: hidden;
  padding: 100px 2rem 90px;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(92,58,8,0.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(27, 62, 111, 0.25);
  color: #DDEEFF;
  border: 1px solid rgba(27, 62, 111, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--steel-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--steel);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover { background: var(--steel-mid); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-mid);
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 80px 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

/* SERVICES */
.services-bg { background: var(--warm-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 20px rgba(200, 151, 58, 0.15);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.65;
}

/* WHY US */
.why-section { background: linear-gradient(135deg, #5C3A08 0%, #8B6010 40%, #C8973A 100%); }

.why-section .section-label { color: rgba(255,255,255,0.7); }
.why-section .section-title { color: var(--white); }
.why-section .section-body { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  border-top: 2px solid rgba(255,255,255,0.4);
  padding-top: 1.25rem;
}

.why-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.why-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* PROCESS */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* CTA BAND */
.cta-band {
  background: var(--steel-light);
  border-top: 1px solid #C8D8EE;
  border-bottom: 1px solid #C8D8EE;
  padding: 56px 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: var(--slate);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.phone-link:hover { opacity: 0.8; }

.phone-link svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cta-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* FOOTER */
footer {
  background: var(--text);
  padding: 3rem 2rem 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-logo-text em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  section { padding: 60px 1rem; }
  .trust-bar { gap: 1.25rem; padding: 1rem; }
  .hero { padding: 72px 1rem 64px; }
}

/* LANGUAGE TOGGLE */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid rgba(200,151,58,0.5);
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--slate);
  text-decoration: none;
}
.lang-toggle:hover {
  border-color: var(--gold-mid);
  background: rgba(200,151,58,0.06);
}
.lang-flag { font-size: 1rem; }
