/* ===== A TO Z DIAMONDS — GLOBAL STYLES ===== */
:root {
  --black: #111111;
  --black-soft: #1A1A1A;
  --charcoal: #2A2A2A;
  --grey-dark: #444444;
  --grey: #6B6B6B;
  --grey-medium: #999999;
  --grey-light: #C8C8C8;
  --grey-lighter: #E2E2E2;
  --off-white: #F5F5F5;
  --warm-white: #FAFAFA;
  --white: #FFFFFF;
  --accent: #888888;
  --text-dark: #111111;
  --text-medium: #555555;
  --text-light: #999999;
  --accent-gradient: linear-gradient(135deg, #111 0%, #333 50%, #111 100%);
  --section-padding: clamp(60px, 8vw, 120px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 400; color: var(--text-medium); line-height: 1.8; }
.section-label { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; display: block; }
.section-label-light { color: var(--grey-medium); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
section { padding: var(--section-padding) 0; }

/* ===== NAVIGATION ===== */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-wrapper.scrolled { background: rgba(255, 255, 255, 0.97); box-shadow: 0 1px 30px rgba(0,0,0,0.06); }
nav {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.logo {
  text-decoration: none; display: flex; align-items: center;
}
.logo img {
  height: 44px; width: auto; display: block;
}
.logo-text {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--black); text-transform: uppercase;
}
.logo-icon { display: none; }
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 32px); align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--grey);
  text-decoration: none; letter-spacing: 0.03em; transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--black); transition: width 0.3s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--black); color: var(--white) !important; padding: 8px 22px;
  border: none; border-radius: 50px; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--charcoal); color: var(--white) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 12px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
body.menu-open { overflow: hidden; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); letter-spacing: 0.02em;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-secondary { background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,0.2); }
.btn-secondary:hover { border-color: var(--black); color: var(--black); background: rgba(0,0,0,0.03); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn-teal { background: var(--black); color: var(--white); }
.btn-teal:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn svg { width: 18px; height: 18px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.02) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; position: relative; z-index: 2;
}
.hero-content { padding: clamp(20px, 4vw, 40px) 0; }
.hero h1 { color: var(--black); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--grey-dark); }
.hero .subtitle { color: var(--text-medium); margin-bottom: 2.5rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-image {
  width: 100%; max-width: 500px; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(0,0,0,0.08); border-radius: 20px;
}
.hero-image-accent {
  position: absolute; top: -15px; right: -15px; width: 100px; height: 100px;
  border: 2px solid rgba(0,0,0,0.06); border-radius: 50%;
}
.hero-image-accent-2 {
  position: absolute; bottom: -10px; left: -10px; width: 60px; height: 60px;
  background: rgba(0,0,0,0.04); border-radius: 50%;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--white); border-radius: 12px; overflow: hidden;
  position: relative; z-index: 2; margin-top: -40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.trust-item {
  padding: clamp(20px, 3vw, 32px); text-align: center;
  border-right: 1px solid var(--grey-lighter); transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--off-white); }
.trust-number { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--black); margin-bottom: 4px; }
.trust-text { font-size: 0.8rem; color: var(--text-medium); font-weight: 500; letter-spacing: 0.03em; }
/* Dark trust strip variant */
.trust-strip-dark { background: transparent !important; border: none !important; box-shadow: none !important; gap: clamp(12px, 2vw, 20px); }
.trust-strip-dark .trust-item {
  border-right: none; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.trust-strip-dark .trust-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.trust-strip-dark .trust-number { color: var(--white); }
.trust-strip-dark .trust-text { color: rgba(255,255,255,0.5); }

/* ===== VALUE PROPOSITION ===== */
.value-section { background: var(--off-white); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); margin-top: 3rem; }
.value-card {
  padding: clamp(28px, 3vw, 40px); border-radius: 16px;
  background: var(--white); border: 1px solid var(--grey-lighter);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient); opacity: 0; transition: opacity 0.4s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; background: var(--black);
}
.value-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.7; }

/* ===== PROCESS ===== */
.process-section { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.process-section h2 { color: var(--white); }
.process-section .subtitle { color: rgba(255,255,255,0.6); }
.process-section .section-label { color: var(--grey-medium); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); margin-top: 3.5rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 45px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), rgba(255,255,255,0.12), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  background: var(--white); color: var(--black); position: relative;
}
.step-number::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.process-step h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 28px); margin-top: 3rem; }
.why-card {
  background: var(--off-white); border-radius: 14px; padding: clamp(24px, 3vw, 36px);
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--grey-lighter); transition: all 0.3s;
}
.why-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.05); transform: translateY(-2px); }
.why-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; color: var(--text-medium); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--off-white); padding: clamp(60px, 8vw, 100px) 0; text-align: center;
  position: relative; overflow: hidden; border-top: 1px solid var(--grey-lighter);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.01) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--black); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner .subtitle { color: var(--text-medium); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: clamp(120px, 15vw, 160px) 0 var(--section-padding);
  background: var(--white); text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--grey-lighter);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.015) 0%, transparent 60%);
}
.page-header h1 { color: var(--black); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-header .subtitle { color: var(--text-medium); max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.section-cream { background: var(--off-white); }
.section-blue { background: var(--off-white); }
.section-white { background: var(--white); }

/* ===== ABOUT ===== */
.about-content { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.about-image-col { position: sticky; top: 100px; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden;
  background: var(--off-white); position: relative; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--grey-lighter);
}
.photo-placeholder { text-align: center; padding: 40px; color: var(--text-light); }
.photo-placeholder svg { width: 80px; height: 80px; stroke: var(--grey-medium); fill: none; stroke-width: 1; margin-bottom: 16px; opacity: 0.5; }
.photo-placeholder p { font-size: 0.85rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-medium); margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-text .highlight {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic;
  color: var(--grey-dark); border-left: 3px solid var(--black); padding-left: 1.5rem;
  margin: 2rem 0; line-height: 1.6;
}
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.about-value-card {
  padding: 28px; border-radius: 12px; background: var(--white); border: 1px solid var(--grey-lighter);
}
.about-value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.about-value-card p { font-size: 0.85rem; color: var(--text-medium); }

/* ===== HOW IT WORKS ===== */
.hiw-steps { margin-top: 3rem; }
.hiw-step {
  display: grid; grid-template-columns: 80px 1fr; gap: clamp(24px, 3vw, 48px);
  padding: clamp(32px, 4vw, 48px) 0; border-bottom: 1px solid var(--grey-lighter); position: relative;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--white); flex-shrink: 0; position: relative;
}
.hiw-step-num::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--grey-lighter);
}
.hiw-step-content h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.hiw-step-content p { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 0.75rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 28px); margin-top: 3rem; }
.service-card {
  background: var(--white); border: 1px solid var(--grey-lighter); border-radius: 16px;
  padding: clamp(28px, 3.5vw, 44px); transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent-gradient); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.05); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  grid-column: span 2; background: var(--black); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.6); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card.featured .service-icon svg { stroke: var(--white); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; background: var(--off-white);
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--grey-dark); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.7; }
.service-card .service-tag {
  display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600;
  color: var(--grey-dark); letter-spacing: 0.03em;
}

/* ===== WHY US PAGE ===== */
.differentiator-grid { margin-top: 3rem; }
.differentiator-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: center; padding: clamp(40px, 5vw, 60px) 0; border-bottom: 1px solid var(--grey-lighter);
}
.differentiator-item:nth-child(even) { direction: rtl; }
.differentiator-item:nth-child(even) > * { direction: ltr; }
.differentiator-item:last-child { border-bottom: none; }
.diff-content .section-label { margin-bottom: 0.75rem; }
.diff-content h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 1rem; }
.diff-content p { color: var(--text-medium); font-size: 0.95rem; }
.diff-visual {
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.diff-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.diff-visual-overlay {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06));
}

/* ===== FAQ ===== */
.faq-grid { margin-top: 3rem; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--grey-lighter); overflow: hidden; }
.faq-question {
  width: 100%; padding: clamp(18px, 2.5vw, 24px) 0; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; text-align: left; font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem); font-weight: 600; color: var(--text-dark); transition: color 0.3s;
}
.faq-question:hover { color: var(--grey-dark); }
.faq-arrow {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.faq-arrow svg { width: 16px; height: 16px; stroke: var(--text-dark); fill: none; stroke-width: 2; transition: transform 0.3s; }
.faq-item.open .faq-arrow { background: var(--black); }
.faq-item.open .faq-arrow svg { stroke: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner { padding: 0 0 clamp(18px, 2.5vw, 24px); color: var(--text-medium); font-size: 0.92rem; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); margin-top: 3rem; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  padding: clamp(24px, 3vw, 32px); border-radius: 14px; background: var(--off-white);
  border: 1px solid var(--grey-lighter); transition: all 0.3s;
}
.contact-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.contact-card.primary {
  background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); border: none;
}
.contact-card.primary h3 { color: var(--white); }
.contact-card.primary p { color: rgba(255,255,255,0.85); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; }
.contact-card h3 svg { width: 20px; height: 20px; }
.contact-card p { font-size: 0.9rem; color: var(--text-medium); }
.contact-form {
  background: var(--white); border: 1px solid var(--grey-lighter);
  border-radius: 16px; padding: clamp(28px, 3.5vw, 40px);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-lighter);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s; background: var(--white); color: var(--text-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
footer { background: var(--black); color: var(--white); padding: clamp(48px, 6vw, 80px) 0 0; }
footer .logo img { height: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-medium); margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.8rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0; font-size: 0.8rem; color: var(--text-light);
  position: relative; z-index: 1;
}
.breadcrumbs a { color: var(--grey); text-decoration: none; }
.breadcrumbs a:hover { color: var(--black); text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { max-width: 320px; margin: 0 auto; }
  .hero-image { max-width: 320px; }
  .hero-image-accent, .hero-image-accent-2 { display: none; }
  .hero-buttons { justify-content: center; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .about-image-col { position: static; max-width: 400px; margin: 0 auto; }
  .differentiator-item, .differentiator-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .diff-visual { max-height: 300px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* --- MOBILE MENU: full-screen solid overlay --- */
  /* NOTE: backdrop-filter on .nav-wrapper creates a new containing block,
     so position:fixed on children is relative to nav-wrapper, not viewport.
     We use position:absolute + 100vw/100vh to escape this. */
  .nav-links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    z-index: 9998;
    padding: 24px 32px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111111 !important;
    display: block;
    padding: 13px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    text-align: center;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: #f5f5f5;
    color: #111111 !important;
    font-weight: 600;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a.nav-cta {
    background: #111111 !important;
    color: #ffffff !important;
    margin-top: 10px;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
  }
  .nav-links a.nav-cta:hover {
    background: #2a2a2a !important;
    color: #ffffff !important;
  }
  .mobile-toggle {
    display: block;
    z-index: 9999;
    position: relative;
  }
  nav { height: 64px; }
  .logo img { height: 36px; }
  .logo-text { font-size: 0.85rem; }

  /* --- HERO: no full-viewport on mobile, show image smaller --- */
  .hero { min-height: auto; padding: 100px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-content { padding: 0; }
  .hero-buttons { justify-content: center; }
  .hero-visual { max-width: 240px; margin: 0 auto; }
  .hero-image { max-width: 240px; border-radius: 16px; }
  .hero-image-accent, .hero-image-accent-2 { display: none; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero .subtitle { font-size: 1rem; margin-bottom: 2rem; }

  /* --- TRUST STRIP on mobile --- */
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .trust-strip-dark { margin-top: 0; }

  /* --- GRIDS to single column --- */
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col { padding-top: 0; }
  .hiw-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-post-hero { border-radius: 12px; }
  .contact-grid { grid-template-columns: 1fr; }

  /* --- MISC mobile --- */
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .page-header { padding: 100px 0 40px; }
  .differentiator-item, .differentiator-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .diff-visual { max-height: 260px; }
  .about-content { grid-template-columns: 1fr; }
  .about-image-col { position: static; max-width: 300px; margin: 0 auto; }
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 32px); margin-top: 3rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--grey-lighter); border-radius: 16px;
  overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.blog-card-image {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--off-white);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: clamp(20px, 2.5vw, 28px); flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; display: flex; gap: 16px; align-items: center; }
.blog-card-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grey-dark); background: var(--off-white); padding: 3px 10px; border-radius: 50px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.7; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--black); transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* Blog Post */
.blog-post { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.blog-post-header { margin-bottom: 3rem; }
.blog-post-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.blog-post-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grey-dark); background: var(--off-white); padding: 4px 12px; border-radius: 50px;
}
.blog-post h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.25rem; }
.blog-post-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-medium); line-height: 1.8; }
.blog-post-hero { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; margin-bottom: 3rem; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: 2.5rem 0 1rem; color: var(--black); }
.blog-post-content h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.blog-post-content p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.blog-post-content ul, .blog-post-content ol { color: var(--text-medium); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic;
  color: var(--grey-dark); border-left: 3px solid var(--black); padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0; line-height: 1.6;
}
.blog-post-content .highlight-box {
  background: var(--off-white); border-radius: 12px; padding: clamp(20px, 3vw, 28px);
  margin: 2rem 0; border-left: 4px solid var(--black);
}
.blog-post-content .highlight-box h3 { margin-top: 0; }
.blog-post-content .highlight-box p:last-child { margin-bottom: 0; }
.blog-post-cta {
  background: var(--black); border-radius: 16px; padding: clamp(28px, 4vw, 40px);
  text-align: center; margin: 3rem 0;
}
.blog-post-cta h3 { margin-bottom: 0.75rem; color: var(--white); }
.blog-post-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.blog-post-cta .btn-primary { background: var(--white); color: var(--black); }
.blog-post-cta .btn-primary:hover { background: var(--off-white); }
.blog-related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--grey-lighter); }
.blog-related h2 { font-size: 1.5rem; margin-bottom: 2rem; }
.blog-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: clamp(14px, 3vw, 20px); }
  .trust-number { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; padding: 0 20px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .differentiator-item { padding: clamp(24px, 4vw, 40px) 0; }
  .diff-visual { max-height: 200px; }
  .blog-post { padding: 0 16px; }
  .blog-post-cta { padding: 24px 20px; }
  .contact-form { padding: 20px; }
  .hero-visual { max-width: 200px; }
  .hero-image { max-width: 200px; }
  .hero h1 { font-size: 1.6rem; }
  .nav-links a { padding: 16px 12px; font-size: 1rem; }
}
