/* =================================================================
   DobrySkup — iOS Style for Seniors 50+
   Large fonts, high contrast, simple & clean
   ================================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: #F5F5F7;
  color: #1D1D1F;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 36px; }
.logo-name {
  font-size: 24px; font-weight: 700;
  color: #1D1D1F; letter-spacing: -0.5px;
}
.logo-name span { color: #007AFF; }
.logo-sub {
  font-size: 14px; color: #4A4A4A; font-weight: 600;
}
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  background: #34C759; color: #fff;
  padding: 10px 22px; border-radius: 980px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(52,199,89,0.3);
  transition: all 0.2s;
}
.nav-phone:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(52,199,89,0.4); }
.phone-icon { font-size: 26px; }
.phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-num { font-size: 19px; font-weight: 800; }
.phone-hours { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); margin-top: 2px; }

/* ── CALL BANNER ──────────────────────────────────────── */
.call-banner {
  background: #34C759;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.call-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s;
}
.call-banner-link:hover {
  background: rgba(0,0,0,0.05);
}
.banner-icon { font-size: 22px; }
.banner-text { letter-spacing: 0.2px; }
.banner-text strong { font-weight: 800; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: #fff;
  padding-top: 60px; padding-bottom: 80px;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
}
.hero-content {
  text-align: center; max-width: 900px;
  margin: 0 auto 60px;
}
.hero-badge {
  display: inline-block;
  font-size: 15px; font-weight: 700; color: #007AFF;
  background: rgba(0,122,255,0.12);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.hero-content h1 {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800; color: #1D1D1F;
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero-text {
  font-size: 22px; color: #2C2C2E;
  line-height: 1.6; font-weight: 500;
  max-width: 760px; margin: 0 auto 44px;
}
.hero-text strong {
  color: #1D1D1F; font-weight: 700;
}
.hero-features {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.feature-badge {
  font-size: 17px; color: #1D1D1F; font-weight: 700;
  padding: 12px 24px;
  background: rgba(52,199,89,0.12);
  border-radius: 100px;
  border: 1px solid rgba(52,199,89,0.2);
}
.hero-location {
  display: inline-block;
  background: rgba(0,122,255,0.06);
  border: 1px solid rgba(0,122,255,0.15);
  padding: 16px 32px; border-radius: 100px;
  font-size: 18px; color: #1D1D1F; font-weight: 600;
}

/* ── FORM CARD ────────────────────────────────────────── */
.form-card {
  max-width: 900px; margin: 0 auto;
  background: #fff; border-radius: 28px;
  padding: 48px 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  border: 3px solid rgba(0,122,255,0.2);
}
.form-header {
  text-align: center; margin-bottom: 32px;
}
.form-icon { font-size: 60px; margin-bottom: 16px; }
.form-header h2 {
  font-size: 32px; font-weight: 800; color: #1D1D1F;
  margin-bottom: 10px; letter-spacing: -0.5px;
}
.form-header p {
  font-size: 18px; color: #4A4A4A; line-height: 1.5;
}
.form-fields {
  display: flex; flex-direction: column; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 16px; font-weight: 700; color: #1D1D1F;
  letter-spacing: 0.2px;
}
.field input,
.field select {
  font-family: inherit;
  font-size: 19px; color: #1D1D1F;
  padding: 16px 18px;
  border: 2px solid #D1D1D6;
  border-radius: 14px;
  background: #F9F9F9;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23007AFF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 50px;
  color: #4A4A4A;
}
.field select option { color: #1D1D1F; }
.field input::placeholder { color: #999; }
.field input:focus,
.field select:focus {
  outline: 4px solid rgba(0,122,255,0.5);
  outline-offset: 2px;
  border-color: #007AFF;
  background: #fff;
}

.btn-submit {
  width: 100%; margin-top: 28px;
  background: #34C759; color: #fff;
  font-size: 21px; font-weight: 800;
  padding: 20px; border-radius: 14px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(52,199,89,0.4);
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: inherit;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(52,199,89,0.5);
}
.btn-submit:active { transform: scale(0.98); }

.success-msg {
  display: none;
  text-align: center; padding: 40px 20px;
}
.success-msg.show { display: block; }
.success-icon { font-size: 80px; margin-bottom: 20px; }
.success-msg h3 {
  font-size: 32px; font-weight: 800; color: #34C759;
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.success-msg p {
  font-size: 19px; color: #4A4A4A;
  margin-bottom: 32px; line-height: 1.6; font-weight: 500;
}
.success-call {
  background: rgba(52,199,89,0.1);
  border: 2px solid #34C759;
  padding: 20px 28px; border-radius: 16px;
}
.success-label {
  font-size: 16px; color: #4A4A4A;
  margin-bottom: 8px; font-weight: 600;
}
.success-phone {
  font-size: 26px; font-weight: 800;
  color: #34C759; text-decoration: none;
}
.form-privacy {
  text-align: center; font-size: 15px;
  color: #6E6E73; margin-top: 20px; font-weight: 500;
}

/* ── TRUST BAR ────────────────────────────────────────── */
.trust-bar {
  background: #FAFAFA;
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-icon { font-size: 36px; flex-shrink: 0; }
.trust-title {
  font-size: 17px; font-weight: 700; color: #1D1D1F;
}
.trust-sub {
  font-size: 15px; color: #4A4A4A; font-weight: 500;
}

/* ── SECTIONS COMMON ──────────────────────────────────── */
.section-container {
  max-width: 1000px; margin: 0 auto; padding: 0 32px;
}
.section-title {
  font-size: 48px; font-weight: 800; color: #1D1D1F;
  text-align: center; margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-sub {
  font-size: 21px; color: #4A4A4A;
  text-align: center; margin-bottom: 60px; font-weight: 500;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-section {
  padding: 80px 32px; background: #fff;
}
.steps {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: rgba(0,122,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #007AFF;
  border: 2px solid rgba(0,122,255,0.2);
}
.step-body h3 {
  font-size: 20px; font-weight: 700; color: #1D1D1F;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.step-body p {
  font-size: 17px; color: #4A4A4A;
  line-height: 1.6; font-weight: 500;
}

/* ── WHY US ───────────────────────────────────────────── */
.why-section {
  padding: 80px 32px; background: #F5F5F7;
}
.why-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: #fff; border-radius: 20px;
  padding: 32px 28px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.why-icon { font-size: 48px; margin-bottom: 16px; }
.why-card h3 {
  font-size: 19px; font-weight: 700; color: #1D1D1F;
  margin-bottom: 10px; letter-spacing: -0.2px;
}
.why-card p {
  font-size: 16px; color: #4A4A4A;
  line-height: 1.55; font-weight: 500;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-section {
  padding: 80px 32px; background: #fff;
}
.about-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.about-icon { font-size: 64px; margin-bottom: 20px; }
.about-section h2 {
  font-size: 42px; font-weight: 800; color: #1D1D1F;
  margin-bottom: 28px; letter-spacing: -1px;
}
.about-section p {
  font-size: 19px; color: #2C2C2E;
  line-height: 1.7; font-weight: 500;
  margin-bottom: 20px;
}
.about-section p strong { color: #1D1D1F; font-weight: 700; }

/* ── NO HIDDEN FEES ───────────────────────────────────── */
.no-fees-section {
  padding: 80px 32px;
  background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
  color: #fff;
}
.no-fees-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.no-fees-icon {
  font-size: 64px; margin-bottom: 16px;
}
.no-fees-section .section-title {
  color: #fff;
  margin-bottom: 12px;
}
.no-fees-section .section-sub {
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  font-size: 20px;
}
.no-fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.no-fees-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: left;
}
.no-fees-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #34C759;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}
.no-fees-text {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

/* ── REVIEWS ──────────────────────────────────────────── */
.reviews-section {
  padding: 80px 32px; background: #F5F5F7;
}
.reviews-section .section-container { max-width: 1120px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review-card {
  background: #fff; border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.review-stars {
  font-size: 24px; color: #FFD60A;
  margin-bottom: 16px; letter-spacing: 3px;
}
.review-text {
  font-size: 17px; color: #1D1D1F;
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic; font-weight: 500;
}
.review-author {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 14px;
}
.review-name {
  font-size: 17px; font-weight: 700; color: #1D1D1F;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section {
  padding: 80px 32px; background: #fff;
}
.faq-inner {
  max-width: 800px; margin: 0 auto;
}
.faq-list {
  display: flex; flex-direction: column; gap: 16px;
}
.faq-item-open {
  background: #F9F9F9;
  border: 2px solid #D1D1D6;
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.2s;
}
.faq-item-open:hover {
  border-color: #007AFF;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,122,255,0.08);
}
.faq-q {
  font-size: 19px; font-weight: 700; color: #1D1D1F;
  margin-bottom: 10px; letter-spacing: -0.2px;
  position: relative;
  padding-left: 32px;
}
.faq-q::before {
  content: '❓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}
.faq-a {
  font-size: 17px; color: #4A4A4A;
  line-height: 1.6; font-weight: 500;
  padding-left: 32px;
}

/* ── CTA + MINI FORM ──────────────────────────────────── */
.cta-section {
  padding: 80px 32px; background: #F5F5F7; text-align: center;
}
.cta-inner {
  max-width: 700px; margin: 0 auto;
}
.cta-section h2 {
  font-size: 48px; font-weight: 800; color: #1D1D1F;
  margin-bottom: 20px; letter-spacing: -1px;
}
.cta-text {
  font-size: 21px; color: #4A4A4A;
  margin-bottom: 32px; font-weight: 500;
}
.btn-call-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #34C759; color: #fff;
  font-size: 20px; font-weight: 800;
  padding: 18px 36px; border-radius: 980px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(52,199,89,0.4);
  margin-bottom: 32px;
  transition: all 0.2s;
}
.btn-call-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(52,199,89,0.5);
}
.btn-icon { font-size: 24px; }

.mini-form-card {
  background: #fff;
  border: 2px solid #D1D1D6;
  border-radius: 20px;
  padding: 32px; margin-top: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.mini-form-title {
  font-size: 22px; font-weight: 700; color: #1D1D1F;
  margin-bottom: 8px;
}
.mini-form-sub {
  font-size: 16px; color: #4A4A4A;
  margin-bottom: 20px; font-weight: 500;
}
.mini-form {
  display: flex; gap: 12px;
  max-width: 500px; margin: 0 auto;
}
.mini-input {
  flex: 1;
  font-family: inherit;
  font-size: 19px; padding: 18px 20px;
  border: 2px solid #D1D1D6;
  border-radius: 14px; background: #F9F9F9;
  font-weight: 500;
}
.mini-input:focus {
  outline: 4px solid rgba(0,122,255,0.5);
  outline-offset: 2px;
  border-color: #007AFF;
  background: #fff;
}
.mini-submit {
  background: #34C759; color: #fff;
  font-size: 19px; font-weight: 800;
  padding: 18px 32px; border-radius: 14px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(52,199,89,0.3);
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.2s;
}
.mini-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52,199,89,0.4);
}
.mini-form-card .success-msg { padding: 20px; }
.mini-form-card .success-icon { font-size: 56px; margin-bottom: 12px; }
.mini-success-text {
  font-size: 18px; color: #1D1D1F; font-weight: 600;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #1D1D1F;
  padding: 52px 32px;
  text-align: center;
}
.footer-logo {
  font-size: 28px; font-weight: 800;
  color: #fff; margin-bottom: 12px;
}
.footer-logo span { color: #34C759; }
.footer-text {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 6px; font-weight: 600;
}
.footer-copy {
  font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 500;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .no-fees-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 12px 16px; }
  .logo-icon { font-size: 28px; }
  .logo-name { font-size: 18px; }
  .logo-sub { font-size: 11px; }
  .nav-phone { padding: 8px 14px; gap: 8px; }
  .phone-icon { font-size: 22px; }
  .phone-num { font-size: 16px; }
  .phone-hours { font-size: 10px; }

  .call-banner-link { font-size: 14px; padding: 12px 16px; gap: 8px; flex-wrap: wrap; text-align: center; }
  .banner-icon { font-size: 18px; }
  
  .hero { padding-top: 40px; padding-bottom: 60px; }
  .hero-content h1 { font-size: 40px; }
  .hero-text { font-size: 18px; }
  .feature-badge { font-size: 15px; padding: 10px 18px; }
  
  .form-card { padding: 32px 24px; }
  .form-header h2 { font-size: 26px; }
  .form-header p { font-size: 16px; }
  .field input, .field select { font-size: 17px; padding: 14px 16px; }
  .btn-submit { font-size: 19px; padding: 18px; }
  
  .trust-inner { grid-template-columns: 1fr; gap: 20px; }
  
  .section-title { font-size: 36px; }
  .section-sub { font-size: 18px; margin-bottom: 40px; }
  
  .why-grid { grid-template-columns: 1fr; }

  .no-fees-grid { grid-template-columns: 1fr; }
  .no-fees-text { font-size: 17px; }
  .no-fees-icon { font-size: 48px; }
  
  .about-section h2 { font-size: 32px; }
  .about-section p { font-size: 17px; }
  
  .faq-item summary { font-size: 17px; padding: 18px 20px; }
  .faq-item p { font-size: 16px; padding: 0 20px 18px; }
  
  .cta-section h2 { font-size: 36px; }
  .cta-text { font-size: 18px; }
  .btn-call-big { font-size: 18px; padding: 16px 28px; }
  
  .mini-form { flex-direction: column; }
  .mini-submit { width: 100%; }

  .step { gap: 16px; padding: 20px 0; }
  .step-num { width: 48px; height: 48px; min-width: 48px; font-size: 22px; }
  .step-body h3 { font-size: 18px; }
  .step-body p { font-size: 16px; }
}
