/* ============================================================
   AusClause — Global Stylesheet
   Palette: Navy #1C2B4A | White #FFFFFF | Light Grey #F4F5F7
   Accent:  Mid-grey #6B7280 | Border: #D1D5DB
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1C2B4A;
  background: #FFFFFF;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #1C2B4A;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

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

a {
  color: #1C2B4A;
  text-decoration: underline;
  transition: opacity 0.15s;
}
a:hover { opacity: 0.7; }

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--grey {
  background: #F4F5F7;
}

/* ---- Navigation ---- */
.nav {
  background: #1C2B4A;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav__logo span {
  color: #7EAFD4;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: #FFFFFF;
  border-bottom-color: #7EAFD4;
  opacity: 1;
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #1C2B4A;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: none;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  line-height: 1;
}

.btn--primary {
  background: #1C2B4A;
  color: #FFFFFF;
  border-color: #1C2B4A;
}

.btn--primary:hover {
  background: #243560;
  border-color: #243560;
  opacity: 1;
  color: #FFFFFF;
}

.btn--outline {
  background: transparent;
  color: #1C2B4A;
  border-color: #1C2B4A;
}

.btn--outline:hover {
  background: #1C2B4A;
  color: #FFFFFF;
  opacity: 1;
}

.btn--white {
  background: #FFFFFF;
  color: #1C2B4A;
  border-color: #FFFFFF;
}

.btn--white:hover {
  background: #E8EDF5;
  border-color: #E8EDF5;
  opacity: 1;
  color: #1C2B4A;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1C2B4A 0%, #243560 60%, #1a3a5c 100%);
  color: #FFFFFF;
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: #CBD5E1;
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Value Props ---- */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-prop {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(28,43,74,0.08);
}

.value-prop__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-prop h3 {
  margin-bottom: 0.5rem;
}

.value-prop p {
  font-size: 0.95rem;
  color: #6B7280;
}

/* ---- Pack Cards (homepage teasers) ---- */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pack-card {
  background: #FFFFFF;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pack-card:hover {
  border-color: #1C2B4A;
  box-shadow: 0 6px 20px rgba(28,43,74,0.12);
}

.pack-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #E8EDF5;
  color: #1C2B4A;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.pack-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pack-card__tagline {
  color: #6B7280;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.pack-card__list {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pack-card__list li {
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
}

.pack-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1C2B4A;
  font-weight: 700;
}

.pack-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #E5E7EB;
}

.pack-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1C2B4A;
}

.pack-card__price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6B7280;
  display: block;
  line-height: 1;
}

/* ---- Shop page full cards ---- */
.shop-card {
  background: #FFFFFF;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-card:hover {
  border-color: #1C2B4A;
  box-shadow: 0 6px 24px rgba(28,43,74,0.12);
}

.shop-card__header {
  background: #1C2B4A;
  color: #FFFFFF;
  padding: 2rem;
}

.shop-card__header h2 {
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.shop-card__header p {
  color: #A5B4CB;
  font-size: 0.95rem;
  margin: 0;
}

.shop-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-card__docs {
  margin-bottom: 1.5rem;
}

.shop-card__docs h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 0.75rem;
}

.shop-card__docs ul {
  list-style: none;
}

.shop-card__docs li {
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
}

.shop-card__docs li:last-child { border-bottom: none; }

.shop-card__docs li::before {
  content: "📄";
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.shop-card__purchase {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-card__price-block strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1C2B4A;
  line-height: 1;
}

.shop-card__price-block span {
  font-size: 0.85rem;
  color: #6B7280;
}

/* ---- Section headings ---- */
.section__header {
  text-align: center;
  margin-bottom: 1rem;
}

.section__header h2 {
  margin-bottom: 0.75rem;
}

.section__header p {
  color: #6B7280;
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Disclaimer Banner ---- */
.disclaimer {
  background: #FFF8E1;
  border-left: 4px solid #F59E0B;
  padding: 1.1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: #374151;
}

.disclaimer strong { color: #1C2B4A; }

/* ---- About page ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
}

.about-intro__visual {
  background: linear-gradient(135deg, #1C2B4A 0%, #243560 100%);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  color: #FFFFFF;
}

.about-intro__visual .big-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.about-intro__visual h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.about-intro__visual p {
  color: #A5B4CB;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.value-item .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-item h3 { margin-bottom: 0.4rem; }
.value-item p { font-size: 0.92rem; color: #6B7280; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: #374151; }

.contact-info__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.contact-info__item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info__item p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* ---- Form ---- */
.form {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C2B4A;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #1C2B4A;
  background: #FAFAFA;
  border: 1.5px solid #D1D5DB;
  border-radius: 4px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1C2B4A;
  box-shadow: 0 0 0 3px rgba(28,43,74,0.1);
  background: #FFFFFF;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  font-size: 0.82rem;
  color: #6B7280;
  margin-top: 0.3rem;
}

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: 4px;
  padding: 1rem 1.2rem;
  color: #065F46;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 0;
}

/* ---- Footer ---- */
.footer {
  background: #1C2B4A;
  color: #A5B4CB;
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand .nav__logo {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #8A9BB8;
}

.footer h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: #A5B4CB;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: #FFFFFF;
  opacity: 1;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: #6B7280;
  margin: 0;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.5;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #1C2B4A 0%, #243560 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 { color: #FFFFFF; margin-bottom: 0.75rem; }
.page-hero p { color: #A5B4CB; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- Trust bar ---- */
.trust-bar {
  background: #1C2B4A;
  padding: 1.25rem 0;
  text-align: center;
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- Shop Tabs ---- */
.shop-tabs {
  display: flex;
  gap: 0;
  border: 2px solid #D1D5DB;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.shop-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6B7280;
  background: #F4F5F7;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-right: 2px solid #D1D5DB;
  text-align: center;
  line-height: 1.2;
}

.shop-tab:last-child {
  border-right: none;
}

.shop-tab:hover {
  background: #E8EDF5;
  color: #1C2B4A;
}

.shop-tab.active {
  background: #1C2B4A;
  color: #FFFFFF;
}

.shop-tab__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #F59E0B;
  color: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  white-space: nowrap;
}

.shop-tab.active .shop-tab__badge {
  background: rgba(245,158,11,0.9);
}

/* Tab panels */
.shop-tab-content {
  display: none;
}

.shop-tab-content.active {
  display: block;
}

/* Savings callout */
.savings-callout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #065F46;
}

.savings-callout strong {
  color: #047857;
}

.savings-callout__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ---- Individual template cards ---- */
.individual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.individual-card {
  background: #FAFAFA;
  border: 1.5px solid #E5E7EB;
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.individual-card:hover {
  border-color: #1C2B4A;
  box-shadow: 0 3px 10px rgba(28,43,74,0.09);
}

.individual-card__icon {
  font-size: 1.4rem;
}

.individual-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C2B4A;
  line-height: 1.3;
}

.individual-card__desc {
  font-size: 0.84rem;
  color: #6B7280;
  line-height: 1.45;
  flex: 1;
}

.individual-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
}

.individual-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C2B4A;
}

.individual-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9CA3AF;
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Individual tab note */
.individual-note {
  font-size: 0.85rem;
  color: #6B7280;
  text-align: center;
  padding: 0.75rem 1rem;
  background: #F4F5F7;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 500px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .form { padding: 1.75rem; }
  .pack-card__footer { flex-direction: column; align-items: flex-start; }
  .shop-card__purchase { flex-direction: column; }
  .shop-tabs { flex-direction: column; }
  .shop-tab { border-right: none; border-bottom: 2px solid #D1D5DB; }
  .shop-tab:last-child { border-bottom: none; }
  .individual-grid { grid-template-columns: 1fr; }
}
