/* ============================
   BONDVERSE
   Property Dreams Into Reality
   Main Stylesheet — Green Branding
   ============================ */

:root {
  /* BondVerse Green Palette */
  --primary: #1a5c2a;        /* Dark forest green */
  --primary-dark: #0f3d1a;   /* Deep dark green */
  --primary-mid: #2d7a3a;    /* Mid green */
  --primary-light: #4a9b5f;  /* Light green */
  --accent: #5ba86a;         /* Soft accent green */
  --accent-light: #8cca9a;   /* Very light green */

  /* Neutral / UI */
  --text: #1a2e1e;
  --text-light: #4a6652;
  --bg: #f4f8f5;
  --bg-light: #edf5ee;
  --white: #ffffff;
  --border: #c8dece;
  --success: #22c55e;

  /* Gradients */
  --gradient: linear-gradient(135deg, #1a5c2a 0%, #0f3d1a 100%);
  --gradient-mid: linear-gradient(135deg, #2d7a3a 0%, #1a5c2a 100%);
  --gradient-light: linear-gradient(135deg, #4a9b5f 0%, #2d7a3a 100%);

  /* Shadows */
  --shadow: 0 4px 20px rgba(26, 92, 42, 0.12);
  --shadow-lg: 0 10px 40px rgba(26, 92, 42, 0.18);
  --shadow-green: 0 8px 25px rgba(26, 92, 42, 0.35);

  /* Shapes */
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-accent {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}
.btn-accent:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-propverse {
  background: #1a5c2a;
  color: white;
  border-color: #1a5c2a;
}
.btn-propverse:hover {
  background: #0f3d1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-propverse-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-propverse-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(26, 92, 42, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; color: var(--text); }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}
.navbar.scrolled {
  background: rgba(10, 35, 15, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark bg */
  transition: filter 0.3s;
}
.navbar.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}
/* When not scrolled, logo is on the dark green hero, keep white */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  margin: 0 auto;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(91,168,106,0.12) 0%, transparent 60%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 .highlight {
  color: var(--accent-light);
  position: relative;
}
.hero-content > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hero floating cards */
.hero-image-side {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  width: 290px;
  transition: transform 0.2s;
}
.hero-card:hover { transform: scale(1.03); }

/* Top rotating card floats */
.hero-card.floating { animation: float 3.5s ease-in-out infinite; }
/* Middle card floats slightly offset */
.hero-card--mid { animation: float 3.5s ease-in-out infinite 0.6s; }
/* Bottom card floats last */
.hero-card--bottom { animation: float 3.5s ease-in-out infinite 1.2s; }

/* Hook rotating badge */
#hookCard { border-left: 4px solid var(--primary); }
.card-badge-free {
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.card-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.card-icon--light {
  background: rgba(26,92,42,0.1);
  color: var(--primary);
}
.card-icon--accent {
  background: linear-gradient(135deg, #4a9b5f, #2d7a3a);
}
.card-info { flex: 1; }
.card-title { display: block; font-weight: 700; color: var(--text); font-size: 0.93rem; line-height: 1.3; }
.card-sub { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }

/* Hook card fade transition */
#hookCard { position: relative; }
#hookTitle, #hookSub { transition: opacity 0.4s ease; }
.hook-fade { opacity: 0 !important; }

.floating { animation: float 3.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== GROUP BANNER ===== */
.group-banner {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 1.25rem 0;
}
.group-banner .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.group-label {
  color: var(--text-light);
  font-size: 0.85rem;
  white-space: nowrap;
}
.group-label strong { color: var(--primary); }
.group-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.group-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.group-logo-item.active {
  border-color: var(--primary);
  background: rgba(26,92,42,0.05);
}
.group-logo-img {
  height: 32px;
  width: auto;
}
.group-logo-item span, .group-logo-item a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.group-logo-item a:hover { text-decoration: underline; }
.propverse-icon {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
}
.group-divider {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 7rem 0 6rem;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-display {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.about-logo-img {
  width: 200px;
  height: auto;
}
.about-card-small {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}
.about-card-small i { color: var(--primary); font-size: 1rem; }
.about-card-small.top-right { top: 12%; right: -5%; }
.about-card-small.bottom-left { bottom: 12%; left: -5%; }
.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text > p { margin-bottom: 1rem; }
.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.highlight-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-card.featured {
  background: var(--gradient);
  border-color: transparent;
}
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured h3 { color: white; }
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.15);
}
.service-card.featured .service-icon i { color: var(--accent-light); }
.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.22);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,92,42,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon i { font-size: 1.4rem; color: var(--primary); }
.service-card h3 { margin-bottom: 0.75rem; color: var(--text); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-light);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.step { flex: 1; min-width: 180px; text-align: center; }
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,92,42,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.step:hover .step-content {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.step:hover .step-content h3,
.step:hover .step-content p { color: white; }
.step:hover .step-content i { color: var(--accent-light); }
.step-content i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.step-content h3 { margin-bottom: 0.75rem; }
.step-arrow {
  align-self: center;
  padding-top: 2rem;
  color: var(--primary-light);
  font-size: 1.25rem;
}

/* ===== BANKS ===== */
.banks {
  padding: 5rem 0;
  background: var(--white);
}
.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bank-logo {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: default;
}
.bank-logo:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background: white;
}
.bank-logo span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* ===== CALCULATOR ===== */
.calculator-section {
  padding: 6rem 0;
  background: var(--bg-light);
}
.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.calculator-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
}
.calc-field { margin-bottom: 1.25rem; }
.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.calculator-result {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result-header {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.result-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.result-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.result-details {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
}
.result-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.88rem;
}
.result-row span:first-child { color: rgba(255,255,255,0.6); }
.result-row span:last-child { color: white; font-weight: 600; }

/* ===== GROUP OF VERSE COMPANIES ===== */
.group-section {
  padding: 7rem 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.group-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.group-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}
.group-section .section-header h2 { color: white; }
.group-section .section-header p { color: rgba(255,255,255,0.65); }
.group-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.group-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.group-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.group-card--bondverse { border-color: rgba(140,202,154,0.3); }
.group-card--bondverse:hover { border-color: rgba(140,202,154,0.6); }
.group-card-logo {
  margin-bottom: 1.25rem;
}
.group-card-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}
.group-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.group-card-tagline {
  color: var(--accent-light) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}
.group-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.group-card-features {
  list-style: none;
  margin-bottom: 2rem;
}
.group-card-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.group-card-features li:last-child { border-bottom: none; }
.group-card-features i { color: var(--accent-light); font-size: 0.8rem; flex-shrink: 0; }
.group-card-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.group-card-url {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
/* PropVerse logo in group card */
.propverse-logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pv-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 800;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.pv-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.group-footer-note {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(140,202,154,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.group-footer-note i { color: var(--accent-light); margin-right: 0.5rem; }
.group-footer-note strong { color: var(--accent-light); }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-info-item p { font-size: 0.9rem; }
.contact-propverse {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-propverse p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-bottom: 1rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1f0d;
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}
.footer-brand strong { color: rgba(255,255,255,0.8); }
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.social-links a:hover {
  background: var(--primary);
  color: white;
}
.footer-links h4 { color: white; font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-group { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-group-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-group-dot {
  width: 10px; height: 10px;
  background: var(--primary-light);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.footer-group-dot--pv { background: var(--accent-light); }
.footer-group-item strong { display: block; color: white; font-size: 0.92rem; margin-bottom: 0.2rem; }
.footer-group-item p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-ext-link { color: var(--accent-light) !important; }
.footer-ext-link:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent-light); }

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-icon { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.modal-content h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.modal-content p { margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-image-side { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .group-cards { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 1000; }
  .services-grid { grid-template-columns: 1fr; }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .banks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .group-banner .container { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 7rem 1.25rem 5rem; }
  .group-cards { grid-template-columns: 1fr; }
}
