/* DebatePro – hot-apple-235.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #003C70;
  --gold:   #FFE227;
  --accent: #B39C39;
  --text:   #333333;
  --light:  #f5f7fa;
  --white:  #ffffff;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--navy); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.topbar {
  background: var(--navy);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left .logo-svg { display: flex; align-items: center; gap: 10px; }
.topbar-left .logo-svg span {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}
.topbar-left .logo-svg span em {
  color: var(--gold);
  font-style: normal;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-right a {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .85;
  transition: opacity .2s;
}
.topbar-right a:hover { opacity: 1; color: var(--gold); }

.navbar {
  background: var(--white);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav { display: flex; gap: 32px; }
.navbar nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 4px;
}
.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.navbar nav a:hover::after,
.navbar nav a.active::after { width: 100%; }

.btn-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
  letter-spacing: .5px;
}
.btn-cta:hover { background: #f0d500; color: var(--navy); transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
  letter-spacing: .5px;
}
.btn-navy:hover { background: #00305c; color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.burger span { display: block; width: 25px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--navy);
  padding: 12px 40px;
  text-align: center;
  font-size: 15px;
}
.info-bar span { color: var(--white); }
.info-bar strong { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 40px;
}
.hero-content h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.divider {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }
.hero-content p {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ===== TEASER / QUIZ CTA ===== */
.section-teaser {
  background: linear-gradient(135deg, #e8f0f8 0%, #d0e2f3 100%);
  padding: 70px 40px;
  text-align: center;
}
.section-teaser h2 {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-teaser p { font-size: 17px; color: #555; margin-bottom: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 80px 40px; }
.section-light { background: var(--white); }
.section-gray  { background: var(--light); }

.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: #666;
  max-width: 620px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,60,112,.12); transform: translateY(-4px); }
.card .card-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: 22px;
}
.card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card p { font-size: 15px; color: #555; margin-bottom: 20px; }

/* Price badge */
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ===== ABOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img { border-radius: var(--radius); width: 100%; height: 380px; object-fit: cover; }
.two-col.reverse .col-img { order: 2; }
.two-col.reverse .col-text { order: 1; }
.col-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.col-text h3 { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.col-text p { font-size: 16px; color: #555; margin-bottom: 16px; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}
.step-item {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h4 { font-family: 'Lato', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 14px; color: #666; }

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  background: linear-gradient(rgba(0,60,112,.88), rgba(0,60,112,.88)), url('../icons/hero-bg.webp') center/cover no-repeat;
  padding: 80px 40px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 30px 24px;
}
.testimonial p { color: rgba(255,255,255,.9); font-size: 15px; font-style: italic; margin-bottom: 16px; }
.testimonial .author { color: var(--gold); font-weight: 700; font-size: 14px; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question i { color: var(--gold); font-size: 14px; transition: transform .25s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { font-size: 15px; color: #555; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-answer.open { max-height: 300px; padding-bottom: 18px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(rgba(0,60,112,.82), rgba(0,60,112,.82)), url('../icons/team.webp') center/cover no-repeat;
  padding: 90px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner .cta-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner .cta-text p { color: rgba(255,255,255,.85); font-size: 17px; }
.cta-banner .cta-actions { flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 60px 40px 0;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo span { font-family: 'Lato', sans-serif; font-size: 24px; font-weight: 900; color: var(--white); }
.footer-logo span em { color: var(--gold); font-style: normal; }
.footer-logo p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 12px; line-height: 1.6; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav a { color: var(--accent); font-size: 14px; }
.footer-col nav a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.footer-col a.footer-contact { color: rgba(255,255,255,.7); font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-col a.footer-contact:hover { color: var(--gold); }

.subfooter {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.subfooter p { font-size: 13px; color: rgba(255,255,255,.5); }
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: background .2s;
}
.social-icons a:hover { background: var(--gold); color: var(--navy); }

/* ===== COOKIES ===== */
#cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-bar.visible { transform: translateY(0); }
#cookie-bar p { flex: 1; min-width: 200px; }
#cookie-bar p a { color: var(--gold); }
#cookie-bar .cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
#cookie-accept {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 25px;
  padding: 10px 24px; font-weight: 700;
  cursor: pointer; font-size: 14px;
}
#cookie-decline {
  background: transparent; color: #aaa;
  border: 1px solid #555; border-radius: 25px;
  padding: 10px 20px; font-size: 14px;
  cursor: pointer;
}
#cookie-decline:hover { border-color: #888; color: #ddd; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #00518f 100%);
  padding: 70px 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ===== CONTENT PAGE ===== */
.content-section {
  padding: 70px 40px;
  background: var(--white);
}
.content-section .container { max-width: 860px; }
.content-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p { font-size: 16px; color: #444; margin-bottom: 14px; line-height: 1.7; }
.content-section ul { padding-left: 22px; margin-bottom: 16px; }
.content-section ul li { font-size: 16px; color: #444; margin-bottom: 8px; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-family: 'Lato', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 20px; font-weight: 700; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item .ci-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-info-item .ci-text strong { display: block; font-size: 14px; color: #999; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-info-item .ci-text span { font-size: 16px; color: var(--navy); }

.contact-form { background: var(--light); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-family: 'Lato', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE EXTRAS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-card .v-icon { color: var(--gold); background: var(--navy); width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.value-card h4 { font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 14px; color: #666; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 40px;
}
.team-card { text-align: center; }
.team-card img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; }
.team-card h4 { font-family: 'Lato', sans-serif; font-size: 18px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: #777; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .topbar { padding: 10px 20px; }
  .topbar-right { display: none; }
  .navbar { padding: 12px 20px; }
  .navbar nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 10px 0; }
  .navbar nav.open { display: flex; }
  .navbar nav a { padding: 12px 24px; border-bottom: 1px solid #f0f0f0; }
  .burger { display: flex; }
  .section, .content-section { padding: 50px 20px; }
  .info-bar { padding: 12px 20px; font-size: 13px; }
  .hero-content { padding: 60px 20px; }
  .section-teaser { padding: 50px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col.reverse .col-img, .two-col.reverse .col-text { order: unset; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 60px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  #cookie-bar { padding: 16px 20px; }
  .subfooter { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}
