:root {
  --primary: #0f4c5c;
  --primary-light: #1a7f6b;
  --accent: #ffe9b3;
  --accent-dark: #d4a373;
  --text-dark: #1e293b;
  --text-medium: #334155;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(15, 76, 92, 0.3);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.check-list {
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.check-list i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--primary);
}

.logo img {
  border-radius: 12px;
  width: 50px;
  height: 50px;
}

.header__notice {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
}

.hero {
  padding: 64px 0 48px;
  background: linear-gradient(145deg, #f0f9f7 0%, #ffffff 100%);
}

.hero--centered .hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.hero__trust i {
  color: var(--primary-light);
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 600/400;
}

.section-transition {
  padding: 16px 0 0;
  margin-bottom: -8px;
}

.section-transition .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.transition-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  white-space: nowrap;
}

.guide {
  padding: 48px 0;
}

.guide__container {
  max-width: 900px;
}

.guide__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.guide__meta i {
  margin-right: 6px;
}

.guide__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.guide__intro {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: var(--text-medium);
}

.table-responsive {
  overflow-x: auto;
  margin: 32px 0 48px;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.app-table th {
  background: var(--primary);
  color: white;
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
}

.app-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border-light);
}

.app-table tr:last-child td {
  border-bottom: none;
}

.app-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: center;
}

.app-detail--reverse {
  grid-template-columns: 2fr 1fr;
}

.app-detail--reverse .app-detail__image {
  order: 2;
}

.app-detail__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.app-detail__content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.app-detail__content p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.rating-badge {
  display: inline-block;
  background: #ffe9b3;
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.rating-badge i {
  color: #fbbf24;
  margin-right: 2px;
}

.why-us {
  padding: 48px 0;
  background: var(--bg-light);
}

.why-us__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-us__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 500/350;
}

.why-us__content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.subscribe {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0a3a47 100%);
  color: white;
}

.subscribe__container {
  max-width: 1200px;
}

.subscribe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.subscribe__form-col {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe__faq-col {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe .section-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}

.subscribe__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.subscribe__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--accent);
}

.price-period {
  font-size: 1.2rem;
  opacity: 0.8;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

.subscribe-form .form-group {
  margin-bottom: 24px;
  text-align: left;
}

.subscribe-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  transition: all 0.2s;
}

.subscribe-form input:not([type="checkbox"])::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:not([type="checkbox"]):focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.custom-checkbox input:checked+.checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.custom-checkbox input:checked+.checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-dark);
  font-size: 12px;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  cursor: pointer;
}

.faq-answer {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

.footer__logo {
  grid-column: span 2;
}

.footer__logo .logo a {
  color: white;
  justify-content: flex-start;
}

.footer__contact {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__company {
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal a {
  color: var(--accent);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: white;
}

.footer__disclaimer {
  font-size: 0.85rem;
  color: #94a3b8;
  grid-column: span 2;
  border-top: 1px solid #334155;
  padding-top: 24px;
  margin-top: 16px;
}

.disclaimer-title {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.footer__copyright {
  grid-column: span 2;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero--centered .hero__container,
  .why-us__container,
  .subscribe__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 32px 0;
    text-align: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .app-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .app-detail--reverse .app-detail__image {
    order: 0;
  }

  .guide__meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .section-transition .container {
    gap: 12px;
  }

  .transition-text {
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__logo,
  .footer__disclaimer,
  .footer__copyright {
    grid-column: span 1;
  }

  .subscribe__form-col,
  .subscribe__faq-col {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .header__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-value {
    font-size: 2.5rem;
  }
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
.legal-content {
  padding: 48px 0;
}
.legal-content .container {
  max-width: 900px;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 32px;
  color: #0f4c5c;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: #1e293b;
}
.legal-content p {
  margin-bottom: 16px;
  color: #334155;
}
.legal-content a {
  color: #1a7f6b;
  text-decoration: underline;
}
.thanks {
  padding: 80px 0;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
}
.thanks__container {
  max-width: 700px;
}
.thanks__content i {
  font-size: 5rem;
  color: #10b981;
  margin-bottom: 24px;
}
.thanks h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}
.thanks__message {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.thanks__note {
  color: #64748b;
  margin-bottom: 32px;
}