/* ============================================
   DANSK SKRIDSIKRING - LANDING PAGES
   Shared design system across all pages

   DESIGN SYSTEM (from dansk-skridsikring.dk):
   - Primary Navy: #212D45
   - Accent Gold: #FEC03D
   - Light BG: #F5F5F5
   - Body Text: #4B4F58
   - Dark Text: #212D45
   - Headings: Montserrat, 700
   - Body: Open Sans, 400
   - CTA Button: Gold bg, navy text, 7px radius
   ============================================ */

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

:root {
  --navy: #212D45;
  --navy-dark: #1a2438;
  --gold: #FEC03D;
  --gold-hover: #f8b525;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --body-text: #4B4F58;
  --dark-text: #212D45;
  --border-light: #E0E0E0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* -- Typography -- */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--dark-text); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 24px; font-weight: 200; font-family: 'Montserrat', sans-serif; }

.subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -- Buttons -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 0;
  background: none;
  border: none;
  transition: color 0.2s;
}
.btn-phone:hover { color: var(--gold); }
.btn-phone .phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.btn-phone:hover .phone-icon { border-color: var(--gold); background: rgba(254,192,61,0.1); }
.btn-phone .phone-icon svg { width: 18px; height: 18px; fill: var(--white); }
.btn-phone:hover .phone-icon svg { fill: var(--gold); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-navy svg { width: 18px; height: 18px; fill: currentColor; }

/* -- Layout -- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4, .section-navy p { color: var(--white); }
.text-center { text-align: center; }

/* -- Header / Logo Bar -- */
.site-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header-logo img {
  height: 36px;
  width: auto;
}
.site-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.site-header-cta:hover { background: var(--gold-hover); }
@media (max-width: 768px) {
  .site-header-logo img { height: 28px; }
  .site-header-cta { font-size: 12px; padding: 8px 14px; }
}

/* -- Top Bar -- */
.top-bar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--white); }
.top-bar svg { width: 14px; height: 14px; fill: currentColor; }

/* -- Hero -- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-content { max-width: 680px; }
.hero h4 { color: var(--gold); font-weight: 200; margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust { margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; }
.hero-trust-item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* -- Logo Bar -- */
.logo-bar { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border-light); }
.logo-bar p { text-align: center; font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; font-family: 'Montserrat', sans-serif; }
.logo-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-grid img { height: 50px; width: auto; opacity: 0.6; filter: grayscale(100%); transition: opacity 0.3s, filter 0.3s; }
.logo-grid img:hover { opacity: 1; filter: none; }

/* -- Problem Section -- */
.problem { padding: 80px 0; background: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problem h2 { margin-bottom: 20px; }
.problem-list { list-style: none; margin-top: 24px; }
.problem-list li { padding: 12px 0; padding-left: 36px; position: relative; font-size: 15px; border-bottom: 1px solid var(--border-light); }
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.problem-image { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(33,45,69,0.12); }

/* -- Stats Bar -- */
.stats-bar { background: var(--navy); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h2 { color: var(--gold); font-size: clamp(36px, 4vw, 48px); font-weight: 800; margin-bottom: 8px; }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* -- Solution Section -- */
.solution { padding: 80px 0; background: var(--light-bg); }
.solution-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.solution-header h4 { color: var(--gold); margin-bottom: 12px; }
.solution-header h2 { margin-bottom: 16px; }
.solution-header p { font-size: 16px; }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { background: var(--white); padding: 32px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.solution-card-icon { width: 56px; height: 56px; background: rgba(254,192,61,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.solution-card-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.solution-card h3 { font-size: 18px; margin-bottom: 10px; }
.solution-card p { font-size: 14px; line-height: 1.65; }
.solution-card-img, .solution-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }

/* -- Process Section -- */
.process { padding: 80px 0; background: var(--white); }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.process-header h4 { color: var(--gold); margin-bottom: 12px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-step { text-align: center; position: relative; }
.step-number { width: 56px; height: 56px; background: var(--navy); color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; }
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14px; line-height: 1.6; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 15%; right: 15%; height: 2px; background: var(--border-light); z-index: 0; }

/* -- Before/After -- */
.before-after { padding: 80px 0; background: var(--white); }
.before-after-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.before-after-header h4 { color: var(--gold); margin-bottom: 12px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.ba-item { text-align: center; }
.ba-item img { border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); margin-bottom: 16px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ba-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--dark-text); }
.ba-label.before { color: #c0392b; }
.ba-label.after { color: #27ae60; }

/* -- Testimonials -- */
.testimonials { padding: 80px 0; background: var(--light-bg); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header h4 { color: var(--gold); margin-bottom: 12px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.testimonial-stars { margin-bottom: 16px; color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; color: var(--body-text); }
.testimonial-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--dark-text); }
.testimonial-date { font-size: 12px; color: #999; margin-top: 4px; }

/* -- CTA Bar -- */
.cta-bar { background: var(--gold); padding: 48px 0; }
.cta-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.cta-bar h3 { color: var(--navy); font-size: clamp(22px, 3vw, 30px); }
.cta-bar p { color: var(--navy); opacity: 0.8; margin-top: 6px; font-size: 15px; }

/* -- Form Section -- */
.form-section { padding: 80px 0; background: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-info { color: var(--white); }
.form-info h2 { color: var(--white); margin-bottom: 16px; }
.form-info > p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 16px; line-height: 1.7; }
.form-benefits { list-style: none; margin-bottom: 32px; }
.form-benefits li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; color: rgba(255,255,255,0.85); }
.form-benefits li svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 15px; }
.form-contact-line a { color: var(--gold); font-weight: 600; }
.form-contact-line svg { width: 18px; height: 18px; fill: var(--gold); }
.form-card { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.form-card h3 { text-align: center; margin-bottom: 8px; font-size: 22px; }
.form-card > p { text-align: center; font-size: 13px; color: #999; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-text); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.form-group label span { color: #e74c3c; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: 7px; font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--dark-text); background: var(--light-bg); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(254,192,61,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }
.form-privacy { text-align: center; font-size: 12px; color: #999; margin-top: 12px; }

/* -- Founder Section -- */
.founder-strip { padding: 60px 0; background: var(--white); }
.founder-inner { display: flex; align-items: center; gap: 40px; max-width: 800px; margin: 0 auto; }
.founder-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); flex-shrink: 0; }
.founder-text h3 { font-size: 18px; margin-bottom: 6px; }
.founder-text .founder-role { font-size: 13px; color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.founder-text p { font-size: 15px; line-height: 1.7; }
.founder-text .founder-contact { margin-top: 16px; display: flex; gap: 24px; flex-wrap: wrap; }
.founder-text .founder-contact a { color: var(--navy); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.founder-text .founder-contact a:hover { color: var(--gold); }
.founder-text .founder-contact svg { width: 16px; height: 16px; fill: var(--gold); }

/* -- FAQ -- */
.faq { padding: 80px 0; background: var(--light-bg); }
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.faq-header h4 { color: var(--gold); margin-bottom: 12px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: var(--dark-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question:hover { color: var(--gold); }
.faq-question svg { width: 20px; height: 20px; fill: var(--body-text); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; line-height: 1.7; color: var(--body-text); }
.faq-item.active .faq-answer { max-height: 300px; }

/* -- Footer -- */
.lp-footer { background: var(--navy-dark); padding: 48px 0 24px; color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.lp-footer h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 16px; }
.lp-footer p { margin-bottom: 8px; }
.lp-footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.lp-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }

/* -- Sticky Mobile CTA -- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); z-index: 100; }
.mobile-cta .btn-primary { width: 100%; justify-content: center; }

/* -- Responsive -- */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-image { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .solution-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-bar-inner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .ba-grid { grid-template-columns: 1fr; max-width: 400px; }
  .founder-inner { flex-direction: column; text-align: center; }
  .founder-text .founder-contact { justify-content: center; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}
