:root {
  --primary: #0f2b46;
  --primary-light: #1a3d5c;
  --primary-dark: #091e33;
  --accent: #c9972e;
  --accent-light: #ddb44e;
  --accent-dark: #a67b1e;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-dark: #0f2b46;
  --text-dark: #1a1a2e;
  --text-body: #3d4555;
  --text-light: #6b7280;
  --text-white: #f0f2f5;
  --border: #e2e6eb;
  --border-light: #f0f2f5;
  --shadow-sm: 0 1px 3px rgba(15, 43, 70, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 43, 70, 0.1);
  --shadow-lg: 0 8px 30px rgba(15, 43, 70, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1180px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar__links a {
  text-decoration: none;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.navbar__links a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.navbar__links a.active {
  color: var(--primary);
  background: var(--bg-alt);
  font-weight: 600;
}

.navbar__cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.navbar__cta:hover {
  background: var(--accent-light) !important;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar__mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-menu a {
  text-decoration: none;
  color: var(--text-body);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
}

.navbar__mobile-menu a:hover,
.navbar__mobile-menu a.active {
  background: var(--bg-alt);
  color: var(--primary);
}

.navbar__mobile-menu a.navbar__cta {
  background: var(--accent);
  color: var(--primary-dark);
  text-align: center;
  margin-top: 8px;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  color: var(--text-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(201, 151, 46, 0.06);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 151, 46, 0.04);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 660px;
}

.hero__badge {
  display: inline-block;
  background: rgba(201, 151, 46, 0.15);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(240, 242, 245, 0.8);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(240, 242, 245, 0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 151, 46, 0.06);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #ffffff;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(240, 242, 245, 0.75);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  line-height: 1.3;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ─── SECTIONS ─── */
section {
  padding: 80px 0;
}

section.alt-bg {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header__label {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-header__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── VALUE PROPS ─── */
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-prop {
  text-align: center;
  padding: 40px 24px;
}

.value-prop__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-prop__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-prop__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card__link:hover {
  color: var(--primary);
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-strip__content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-strip__content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-strip__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-strip__visual-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s;
}

.about-strip__visual-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-strip__visual-card .icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.about-strip__visual-card .label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-strip__visual-card .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}

/* ─── CREDENTIALS ─── */
.credentials-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credential__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.credential__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.credential__text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  text-align: center;
  padding: 72px 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(240, 242, 245, 0.75);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn + .btn {
  margin-left: 12px;
}

/* ─── CONTENT SECTIONS ─── */
.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.content-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section li {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

.content-section a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.content-section a:hover {
  color: var(--primary);
}

/* ─── CONTACT INFO ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info__text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.contact-info__text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.contact-info__text a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-info__text a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ─── LEGAL PAGE ─── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 14px 0;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text-dark);
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.93rem;
  color: rgba(240, 242, 245, 0.6);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer__abn {
  font-size: 0.85rem;
  color: rgba(240, 242, 245, 0.45);
  margin-top: 8px;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 242, 245, 0.5);
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  color: rgba(240, 242, 245, 0.75);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(240, 242, 245, 0.45);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links a {
  color: rgba(240, 242, 245, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__legal-links a:hover {
  color: var(--accent);
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .hero__stats {
    gap: 28px;
  }

  .hero__stat-number {
    font-size: 1.6rem;
  }

  .page-hero {
    padding: 56px 0 40px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  section {
    padding: 56px 0;
  }

  .section-header__title {
    font-size: 1.7rem;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-strip__visual {
    grid-template-columns: 1fr 1fr;
  }

  .credentials-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}