/* ============================================================
   awallaby — Static Site Stylesheet (Brand Guidelines v1.1)
   Colors: Midnight Blue #192279 | Tangerine Orange #FF7262
           Ultramarine Blue #2633D0 | Watermelon Pink #F04879
   Font: Figtree (400, 600, 700)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700&display=swap');

/* ── Variables ── */
:root {
  --bg:           #0e0f1a;        /* near-black with midnight blue tint */
  --bg-card:      #13152a;        /* slightly lighter midnight */
  --bg-card2:     #191c33;
  --border:       #252848;        /* midnight blue border */
  --border-light: #2f3460;
  --midnight:     #192279;        /* primary brand blue */
  --ultramarine:  #2633D0;        /* secondary blue */
  --tangerine:    #FF7262;        /* primary brand orange/CTA */
  --tangerine-h:  #ff8573;        /* hover state */
  --pink:         #F04879;        /* secondary pink */
  --text:         #e8eaf8;
  --text-muted:   #8890c4;
  --text-dim:     #464e8a;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --font:         'Figtree', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Nav ── */
nav:not(.footer-nav) {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,15,26,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; max-width: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.btn-support {
  white-space: nowrap;
  align-self: center;
  line-height: 1.4;
  background: var(--tangerine) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  transition: background 0.2s !important;
  color: var(--white) !important;
}
.btn-support:hover { background: var(--tangerine-h) !important; }

/* ── Nav toggle (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--tangerine);
  color: var(--white);
}
.btn-primary:hover { background: var(--tangerine-h); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { color: var(--text); border-color: #4a52a0; }

/* ── Page wrapper ── */
.page { min-height: 100vh; }

/* ── Section helpers ── */
section { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }

/* ── Hero ── */
.hero {
  padding: 80px 48px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hero-text h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--white);
}
/* Gradient text — tangerine → pink (brand guidelines) */
.hero-text h1 .accent,
.hero-text h1 .accent-red {
  background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-image { width: 200px; flex-shrink: 0; }
.hero-image img { width: 100%; }
.kangaroo-placeholder {
  width: 180px; height: 200px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--text-dim); font-size: 12px; text-align: center;
}
.kangaroo-placeholder .emoji { font-size: 48px; }

/* ── What do we do ── */
.what-section { padding-top: 0; }
.what-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 36px;
  color: var(--white);
}
.what-section h2 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--border-light); }
.service-card .card-icon {
  width: 36px; height: 36px;
  background: rgba(255,114,98,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card .card-icon svg { width: 18px; height: 18px; stroke: var(--tangerine); }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.service-card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tangerine);
  letter-spacing: 0.04em;
}

/* ── Value props ── */
.value-section { padding-top: 0; }
.value-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 36px;
  line-height: 1.15;
  color: var(--white);
}
.value-section h2 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card .v-icon { font-size: 22px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.value-card .stat { font-weight: 700; color: var(--white); }
.value-card .source {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--tangerine);
  font-weight: 700;
}

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0 48px; }

/* ── Contact Form ── */
.contact-section { padding-bottom: 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--white);
}
.contact-section h2 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
.contact-section .contact-sub { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.contact-section .contact-sub strong { color: var(--white); font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--tangerine); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; padding: 13px; font-size: 14px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }
.footer-social { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-social a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-bottom .copy { font-size: 13px; color: var(--text-dim); }

/* ── Services Full Page ── */
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.service-full-card:hover { border-color: var(--border-light); }
.service-full-card .card-icon {
  width: 36px; height: 36px;
  background: rgba(255,114,98,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-full-card .card-icon svg { width: 18px; height: 18px; stroke: var(--tangerine); }
.service-full-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-full-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.service-cta-card {
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.service-cta-card p { font-size: 15px; font-weight: 600; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 60px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card .plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
}
.pricing-card .price sup { font-size: 24px; letter-spacing: 0; }
.pricing-card .price-sub { font-size: 13px; color: var(--text-dim); margin-top: 6px; margin-bottom: 24px; }
.pricing-card .price-contact { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 24px; margin-top: 8px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,114,98,0.15);
  border: 1.5px solid var(--tangerine);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23FF7262' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-card .pricing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── FAQ ── */
.faq-section h2 { font-size: clamp(28px, 3vw, 36px); font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; color: var(--white); }
.faq-section .faq-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg-card);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
}
.faq-question code {
  background: rgba(255,114,98,0.12);
  color: var(--tangerine);
  font-family: monospace;
  font-size: 13px;
  padding: 1px 6px;
  border-radius: 4px;
}
.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 18px; line-height: 1;
  transition: all 0.2s;
}
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { background: var(--tangerine); border-color: var(--tangerine); color: var(--white); }
.faq-item.open .faq-icon::after { content: '−'; }
.faq-item:not(.open) .faq-icon::after { content: '+'; }

/* ── About ── */
.about-hero { padding-bottom: 24px; }
.about-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--white);
}
.about-hero h1 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
.about-hero p { margin-top: 20px; font-size: 15px; color: var(--text-muted); max-width: 560px; line-height: 1.75; }
.about-hero p strong { color: var(--white); font-weight: 700; }
.values-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
  color: var(--white);
}
.values-section h2 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.value-item:hover { border-color: var(--border-light); }
.value-item .vi-icon {
  width: 36px; height: 36px;
  background: rgba(255,114,98,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-item .vi-icon svg { width: 18px; height: 18px; stroke: var(--tangerine); }
.value-item h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-item p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.value-item p strong { color: var(--white); font-weight: 700; }

/* ── Page header ── */
.page-header { padding-bottom: 0; }
.page-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--white);
}
.page-header h1 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

/* ── Contact page ── */
.contact-page-hero { padding-bottom: 0; }
.contact-page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--white);
}
.contact-page-hero h1 .accent { background: linear-gradient(100deg, var(--tangerine) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

/* ── Responsive ──
   The nav collapses earlier than the rest of the layout: the full link row
   plus the Support Portal button stops fitting well before 768px. */
@media (max-width: 900px) {
  nav:not(.footer-nav) { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14,15,26,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links .btn-support {
    display: flex;
    justify-content: center;
    align-self: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  section { padding: 48px 20px; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-image { display: none; }
  .services-grid, .services-full-grid, .values-grid, .value-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding: 16px 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .divider { margin: 0 20px; }
}

@media (max-width: 400px) {
  .hero-text h1 { letter-spacing: -1.5px; }
  .pricing-card .price { font-size: 40px; }
}
