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

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

body {
  font-family: 'Open Sans', sans-serif;
  background: #FDFBF7;
  color: #000000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: #f99303; text-decoration: none; }
a:hover { color: #da8000; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: #0096cf;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Layout wrapper ----- */
.l80-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#l80-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,134,155,0.1);
  box-shadow: 0 1px 4px rgba(0,134,155,0.06);
}

.l80-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.l80-nav-logo img {
  height: 52px;
  width: auto;
}

#l80-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

#l80-nav ul li a {
  display: block;
  padding: 8px 16px;
  color: rgba(0,0,0,0.80);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color 0.15s;
}

#l80-nav ul li a:hover,
#l80-nav ul li a.active {
  background: transparent;
  color: #f99303;
}

.l80-nav-bestel {
  display: inline-block;
  margin-left: 8px;
  padding: 8px 20px;
  background: #f99303;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.15s !important;
}
.l80-nav-bestel:hover {
  background: #da8000 !important;
  color: #ffffff !important;
}

.l80-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.l80-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #00869b;
  border-radius: 2px;
}

@media (max-width: 680px) {
  .l80-hamburger { display: flex; }
  #l80-nav ul {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 8px 0 16px;
    box-shadow: 0 4px 16px rgba(0,134,155,0.12);
    border-top: 1px solid rgba(0,134,155,0.08);
    gap: 0;
  }
  #l80-nav ul.open { display: flex; }
  #l80-nav ul li a { padding: 12px 24px; border-radius: 0; }
  .l80-nav-bestel { margin: 8px 24px 4px; display: block; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
#l80-hero {
  background: #0096cf;
  overflow: hidden;
  position: relative;
}

.l80-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 0;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  min-height: 500px;
}

.l80-hero-text {
  flex: 1 1 420px;
  padding-bottom: 64px;
  z-index: 2;
}

.l80-hero-label {
  display: inline-block;
  background: #f99303;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.l80-hero-text h1 {
  font-family: 'Kavoon', cursive;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.l80-hero-text h1 em {
  font-style: normal;
  color: #f99303;
}

.l80-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.l80-hero-cta {
  display: inline-block;
  background: #f99303;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background 0.15s, transform 0.15s;
}
.l80-hero-cta:hover {
  background: #da8000;
  color: #ffffff;
  transform: translateY(-2px);
}

.l80-hero-image {
  flex: 0 0 auto;
  align-self: flex-end;
  z-index: 2;
  padding-bottom: 40px;
}

.l80-hero-image img {
  height: 460px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  filter: drop-shadow(-10px 0 28px rgba(0,0,0,0.4));
}

#l80-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

@media (max-width: 740px) {
  .l80-hero-inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 32px;
    padding: 48px 24px 0;
  }
  .l80-hero-text { padding-bottom: 0; text-align: center; }
  .l80-hero-sub { margin-left: auto; margin-right: auto; }
  .l80-hero-image {
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .l80-hero-image img { height: 320px; max-width: 80%; }
}

/* ============================================================
   SECTIONS / PAGE LAYOUT
   ============================================================ */
.l80-section {
  padding: 80px 0;
}

.l80-section-alt {
  background: #f0ece4;
}

.l80-section-dark {
  background: #00869b;
  color: #FDFBF7;
}

.l80-section-dark h2,
.l80-section-dark h3 { color: #ffffff; }

.l80-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.l80-section-title h2 {
  margin-bottom: 12px;
}

.l80-divider {
  width: 48px;
  height: 4px;
  background: #f99303;
  margin: 0 auto;
  border-radius: 2px;
}

.l80-section-title.left .l80-divider {
  margin: 0;
}

/* ============================================================
   MAGAZINE PREVIEW SECTION
   ============================================================ */
.l80-magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.l80-magazine-grid img {
  width: 100%;
  transition: transform 0.4s;
}
.l80-magazine-grid img:hover { transform: scale(1.01); }

.l80-magazine-text h2 { margin-bottom: 16px; }
.l80-magazine-text p { color: #000000; opacity: 0.8; margin-bottom: 16px; }

.l80-tag {
  display: inline-block;
  background: #f99303;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

@media (max-width: 680px) {
  .l80-magazine-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.l80-form-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,134,155,0.12);
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.l80-form-header {
  background: rgba(0,134,155,0.05);
  border-bottom: 1px solid rgba(0,134,155,0.1);
  padding: 28px 36px;
}

.l80-form-header h3 { margin-bottom: 4px; }
.l80-form-header p { color: rgba(0,0,0,0.6); font-size: 0.92rem; margin: 0; }

.l80-form-body { padding: 32px 36px; }

.l80-field {
  margin-bottom: 20px;
}

.l80-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0096cf;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.l80-field input[type="text"],
.l80-field input[type="email"],
.l80-field select {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #00869b;
  background: #ffffff;
  border: 1.5px solid rgba(0,134,155,0.2);
  border-radius: 3px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.l80-field input:focus,
.l80-field select:focus {
  border-color: #f99303;
  box-shadow: 0 0 0 3px rgba(249,147,3,0.12);
}

.l80-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .l80-field-row { grid-template-columns: 1fr; }
  .l80-form-header, .l80-form-body { padding: 20px; }
}

.l80-form-footer {
  background: rgba(0,134,155,0.04);
  border-top: 1px solid rgba(0,134,155,0.1);
  padding: 24px 36px;
}

.l80-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.l80-price-row span:first-child {
  font-size: 0.95rem;
  color: rgba(0,150,207,0.7);
}

.l80-price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f99303;
}

.l80-btn-primary {
  display: block;
  width: 100%;
  padding: 15px 32px;
  background: #f99303;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  text-align: center;
}
.l80-btn-primary:hover {
  background: #da8000;
  transform: translateY(-1px);
}

.l80-btn-orange {
  background: #f99303;
}
.l80-btn-orange:hover {
  background: #da8000;
}

/* ============================================================
   INFO / CONTENT PAGES
   ============================================================ */
.l80-page-hero {
  background: #00869b;
  padding: 60px 24px;
  text-align: center;
}

.l80-page-hero h1 {
  font-family: 'Kavoon', cursive;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.l80-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.l80-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.l80-content h2:first-child { margin-top: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.l80-faq-group { margin-bottom: 48px; }
.l80-faq-group h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,134,155,0.12);
}

.l80-accordion-item {
  border-bottom: 1px solid rgba(0,134,155,0.12);
}

.l80-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #00869b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}

.l80-accordion-btn:hover { color: #f99303; }

.l80-accordion-btn .l80-acc-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,134,155,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: #00869b;
  transition: background 0.15s, transform 0.25s;
}

.l80-accordion-btn.open .l80-acc-icon {
  background: #f99303;
  color: #ffffff;
  transform: rotate(45deg);
}

.l80-accordion-panel {
  display: none;
  padding: 0 0 20px;
  color: rgba(0,134,155,0.78);
  font-size: 0.97rem;
  line-height: 1.7;
}
.l80-accordion-panel.open { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.l80-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 640px) {
  .l80-contact-grid { grid-template-columns: 1fr; }
}

.l80-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,134,155,0.1);
}

.l80-contact-item:last-child { border-bottom: none; }

.l80-contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,134,155,0.5);
}

.l80-contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00869b;
}

.l80-contact-value a { color: #f99303; }
.l80-contact-value a:hover { color: #da8000; }

/* ============================================================
   CONFIRMATION / PAYMENT PAGE
   ============================================================ */
.l80-confirm-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  text-align: center;
}

.l80-confirm-icon {
  width: 72px;
  height: 72px;
  background: #f99303;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.l80-confirm-box h1 {
  font-family: 'Kavoon', cursive;
  font-weight: 400;
  margin-bottom: 12px;
}

.l80-confirm-box > p {
  color: rgba(0,0,0,0.72);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.l80-payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 48px;
}

.l80-payment-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1.5px solid rgba(0,134,155,0.15);
  border-radius: 4px;
  text-decoration: none;
  color: #00869b;
  font-weight: 600;
  font-size: 0.97rem;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.l80-payment-btn:hover {
  border-color: #f99303;
  box-shadow: 0 4px 16px rgba(249,147,3,0.15);
  transform: translateY(-2px);
  color: #00869b;
}

.l80-payment-btn img {
  height: 32px;
  width: auto;
}

.l80-payment-btn-label { flex: 1; }
.l80-payment-btn-label strong { display: block; }
.l80-payment-btn-label span {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.55);
  font-weight: 400;
}

.l80-transfer-box {
  background: rgba(0,134,155,0.04);
  border: 1px solid rgba(0,134,155,0.1);
  border-radius: 4px;
  padding: 24px 28px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.l80-transfer-box h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0096cf;
  margin-bottom: 16px;
}

.l80-transfer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,134,155,0.08);
  font-size: 0.95rem;
}
.l80-transfer-row:last-child { border-bottom: none; }
.l80-transfer-row span:first-child { color: rgba(0,150,207,0.80); }
.l80-transfer-row span:last-child { font-weight: 600; }

/* ============================================================
   NEWSLETTER BLOCK
   ============================================================ */
.l80-newsletter {
  background: #0096cf;
  padding: 56px 24px;
  text-align: center;
}

.l80-newsletter h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.l80-newsletter p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.l80-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.l80-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  border: none;
  border-radius: 3px;
  outline: none;
  color: #00869b;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}

.l80-newsletter-form button {
  padding: 12px 24px;
  background: #f99303;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.l80-newsletter-form button:hover { background: #da8000; }

@media (max-width: 480px) {
  .l80-newsletter-form { flex-direction: column; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#l80-footer {
  background: #ffffff;
  padding: 48px 24px 32px;
  color: rgba(0,134,155,0.5);
  border-top: 1px solid rgba(0,134,155,0.1);
}

.l80-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,134,155,0.1);
}

.l80-footer-brand img {
  height: 44px;
  margin-bottom: 12px;
}

.l80-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
  max-width: 280px;
  margin: 0;
}

.l80-footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.l80-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(0,134,155,0.15);
  border-radius: 50%;
  color: rgba(0,134,155,0.4);
  transition: border-color 0.15s, color 0.15s;
}

.l80-footer-social a:hover {
  border-color: #f99303;
  color: #f99303;
}

.l80-footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(0,0,0,0.75);
}

.l80-footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.75);
}

.l80-footer-bottom a {
  color: rgba(0,0,0,0.75);
  transition: color 0.15s;
}
.l80-footer-bottom a:hover { color: #f99303; }

@media (max-width: 560px) {
  .l80-footer-inner { grid-template-columns: 1fr; }
  .l80-footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.l80-text-center { text-align: center; }
.l80-mt-0 { margin-top: 0; }
.l80-mb-sm { margin-bottom: 24px; }
.l80-mb-md { margin-bottom: 40px; }
