@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
  --navy: #1C3557;
  --navy-dark: #142840;
  --navy-light: #243f68;
  --gold: #C8963E;
  --gold-light: #d9a84e;
  --bg: #F8F7F4;
  --bg-alt: #EFECEA;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --border: #DDD9D2;
  --shadow: 0 2px 16px rgba(28,53,87,0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.nav-brand-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.nav-planipret-logo {
  height: 28px;
  width: auto;
  opacity: 0.82;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
  display: block;
}

.nav-planipret-logo:hover { opacity: 1; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ──────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 5rem 2rem 0;
  color: var(--white);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.hero-content {
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { display: flex; justify-content: center; }

.hero-image img {
  max-height: 500px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top;
}

.hero-image-placeholder {
  width: 360px;
  height: 440px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── HERO VARIANTS ─────────────────────────── */
.hero-slim {
  background: var(--navy);
  padding: 4rem 2rem;
  color: var(--white);
  text-align: center;
}

.hero-slim h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-slim p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,150,62,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── SECTION ───────────────────────────────── */
.section { padding: 5rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: var(--white); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }

.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── GRID ──────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

/* ── CARDS ─────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28,53,87,0.13);
}

.card-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }

/* ── VALUE CARDS ───────────────────────────── */
.value-card {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.value-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.35rem; }
.value-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.55; }

/* ── SERVICE CARDS ─────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28,53,87,0.13);
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ── FAQ ───────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  display: none;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── TWO-COL LAYOUT ────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── ABOUT PHOTO ───────────────────────────── */
.about-photo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-photo img {
  max-height: 520px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(28,53,87,0.18);
}

/* ── BADGE ─────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(200,150,62,0.12);
  color: var(--gold);
  border: 1px solid rgba(200,150,62,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ── PRICING BANNER ────────────────────────── */
.pricing-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.pricing-banner h2 { color: var(--gold); font-size: 2rem; margin-bottom: 0.75rem; }
.pricing-banner p { font-size: 1.05rem; opacity: 0.8; max-width: 500px; margin: 0 auto 2rem; }

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  text-align: center;
  gap: 0.35rem;
}

.stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.stat-value .stat-symbol {
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 1.25rem 0;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .stat-divider { display: none; }
}

/* ── CTA SECTION ───────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.contact-info-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-info-item p { color: var(--text-light); font-size: 0.95rem; }
.contact-info-item a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-info-item a:hover { color: var(--gold); }

/* ── FORM ──────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

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

label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); }

textarea { resize: vertical; min-height: 130px; }

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-checkbox input { width: auto; margin-top: 0.15rem; flex-shrink: 0; }

/* ── VIDEOS ────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  cursor: pointer;
}

.video-card:hover { transform: translateY(-3px); }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumb-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: transform var(--transition);
}

.video-card:hover .video-thumb-icon { transform: scale(1.1); }

.video-info { padding: 1.25rem; }
.video-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.video-info p { font-size: 0.85rem; color: var(--text-light); }

.video-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── COMING SOON ───────────────────────────── */
.coming-soon-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,40,64,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  background: var(--gold);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 0.75rem; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-planipret-logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
  display: block;
}

.footer-planipret-logo:hover { opacity: 0.85; }

.compliance-note {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 300px; width: 100%; object-fit: cover; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }

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

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

  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .section { padding: 3rem 1.5rem; }

  .pricing-banner { padding: 2rem; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem; }
  .hero-slim { padding: 3rem 1.5rem; }
}
