/* ========================================
   NO FUSS HOSTING — GLOBAL STYLES
   Clean, confident Australian small-business look
   ======================================== */

:root {
    /* Brand */
    --primary: #ff6b6b;
    --primary-dark: #e85a5a;
    --secondary: #4ecdc4;
    --secondary-dark: #3db8b0;
    --accent: #ffe66d;
    --mint: #a8e6cf;
    --sky: #5dade2;
    --salmon: #ffa07a;

    /* Neutrals */
    --ink: #1a2332;
    --dark: #243447;
    --grey: #5c6b7a;
    --muted: #8a9aab;
    --light-grey: #eef2f5;
    --wash: #f7fafb;
    --white: #ffffff;

    /* Surfaces */
    --surface: #ffffff;
    --surface-alt: linear-gradient(160deg, #fff8f7 0%, #eef9f8 55%, #f4f8fb 100%);
    --hero-overlay: linear-gradient(
        115deg,
        rgba(26, 35, 50, 0.78) 0%,
        rgba(26, 35, 50, 0.55) 45%,
        rgba(78, 205, 196, 0.35) 100%
    );

    /* Typography */
    --font-main: "Outfit", system-ui, sans-serif; /* weights 400–700 */
    --font-display: "Fraunces", Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3.5rem;
    --space-xl: 5rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 35, 50, 0.12);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.25s var(--ease);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--ink);
    line-height: 1.65;
    font-size: 1.0625rem;
    background-color: var(--wash);
    background-image:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 107, 107, 0.07), transparent),
        radial-gradient(ellipse 60% 40% at 90% 0%, rgba(78, 205, 196, 0.08), transparent);
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition), background var(--transition),
        border-color var(--transition), transform var(--transition), opacity var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.15rem;
    font-family: var(--font-main);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--grey);
}

.text-large {
    font-size: 1.2rem;
    line-height: 1.6;
}

.lede {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--grey);
    max-width: 36em;
}

.brand-mark {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.brand-mark span {
    color: var(--secondary);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.section-alt {
    background: var(--surface-alt);
    position: relative;
}

.section-tight {
    padding: var(--space-lg) 0;
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.text-center {
    text-align: center;
}

.text-center .lede {
    margin-left: auto;
    margin-right: auto;
}

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

.hidden {
    display: none !important;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
}

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

.btn:active {
    transform: translateY(0);
}

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

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

.btn-secondary {
    background: var(--secondary);
    color: var(--ink);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
}

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

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--white);
}

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 35, 50, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: var(--space-sm);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-links > li > a,
.nav-dropdown-toggle {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font-family: var(--font-main);
    cursor: pointer;
}

.nav-links > li > a:hover,
.nav-dropdown-toggle:hover {
    color: var(--primary);
    background: rgba(255, 107, 107, 0.06);
}

.nav-links > li > a.active,
.nav-dropdown.is-active > .nav-dropdown-toggle {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.15rem !important;
    margin-left: 0.35rem;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.nav-cta.active {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle .chevron {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
    display: inline-block;
}

.nav-dropdown.is-open .chevron {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid rgba(26, 35, 50, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    background: rgba(78, 205, 196, 0.12);
    color: var(--ink);
    outline: none;
}

.nav-dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--light-grey);
    margin: 0.35rem 0.5rem;
}

.nav-dropdown-menu .view-all {
    color: var(--primary);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    min-height: min(92vh, 780px);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl) 0 calc(var(--space-xl) + 1rem);
    color: var(--white);
    overflow: hidden;
    background-color: var(--ink);
    background-image: var(--hero-overlay), url("../images/hero-image.png");
    background-size: cover;
    background-position: center;
}

.hero-home {
    align-items: center;
    padding-bottom: var(--space-xl);
}

.hero-page {
    min-height: 42vh;
    align-items: flex-end;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

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

.hero-content {
    max-width: 640px;
    animation: heroIn 0.9s var(--ease) both;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: var(--space-md);
    max-width: 34em;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero .highlight {
    color: var(--accent);
    font-style: italic;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FEATURE / VALUE ROWS (not heavy cards)
   ======================================== */

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-item {
    position: relative;
    padding-top: var(--space-sm);
}

.feature-item::before {
    content: "";
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--primary);
    margin-bottom: var(--space-sm);
    border-radius: 2px;
}

.feature-item.alt::before {
    background: var(--secondary);
}

.feature-item h3 {
    margin-bottom: 0.4rem;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

/* ========================================
   SERVICE LINKS / HUB
   ======================================== */

.service-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
}

.service-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-md);
    align-items: center;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
    color: inherit;
}

.service-link:hover {
    padding-left: 0.5rem;
}

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

.service-link-mark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
    flex-shrink: 0;
}

.service-link-mark.teal {
    background: rgba(78, 205, 196, 0.15);
    color: var(--secondary-dark);
}

.service-link-mark svg {
    width: 1.25rem;
    height: 1.25rem;
}

.service-link-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.15rem;
    transition: color var(--transition);
}

.service-link-desc {
    color: var(--grey);
    font-size: 0.95rem;
    margin: 0;
}

.service-link-arrow {
    color: var(--muted);
    font-size: 1.25rem;
    transition: transform var(--transition), color var(--transition);
}

.service-link:hover .service-link-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* Compact service tiles for hub */
.service-tile {
    display: block;
    padding: var(--space-md);
    background: var(--white);
    border: 1px solid rgba(26, 35, 50, 0.08);
    border-radius: var(--radius-md);
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-tile:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-tile h3 {
    margin-top: var(--space-sm);
    margin-bottom: 0.4rem;
}

.service-tile p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tile-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
}

.tile-mark.teal {
    background: rgba(78, 205, 196, 0.15);
    color: var(--secondary-dark);
}

.tile-mark svg {
    width: 1.15rem;
    height: 1.15rem;
}

/* ========================================
   DETAIL BLOCKS (service pages)
   ======================================== */

.detail-block h2 {
    margin-bottom: var(--space-sm);
}

.check-list {
    display: grid;
    gap: 0.65rem;
    margin-top: var(--space-sm);
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--grey);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 2px;
    background: var(--secondary);
}

.fit-list {
    display: grid;
    gap: 0.75rem;
    margin-top: var(--space-sm);
}

.fit-list li {
    padding: 0.85rem 1rem;
    background: var(--white);
    border-left: 3px solid var(--primary);
    color: var(--grey);
    font-size: 0.98rem;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.insight {
    padding-top: var(--space-sm);
    border-top: 2px solid var(--secondary);
}

.insight h4 {
    margin-bottom: 0.35rem;
}

.insight p {
    margin: 0;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   STEPS
   ======================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: 0.25rem;
}

.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    opacity: 0.85;
}

.step h3 {
    margin-bottom: 0.35rem;
}

.step p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   CTA
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a7a 45%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section p {
    max-width: 32em;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-section .btn {
    margin-top: var(--space-sm);
}

/* ========================================
   CONTACT
   ======================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info {
    background: var(--ink);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    position: sticky;
    top: 5.5rem;
}

.contact-info h3,
.contact-info p {
    color: rgba(255, 255, 255, 0.92);
}

.contact-info h3 {
    font-family: var(--font-display);
    color: var(--white);
}

.contact-info-item {
    margin: var(--space-md) 0;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
    font-weight: 600;
}

.form-panel {
    background: var(--white);
    border: 1px solid rgba(26, 35, 50, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1.5px solid rgba(26, 35, 50, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--wash);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
    background: var(--white);
}

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

.form-success {
    background: linear-gradient(135deg, var(--secondary), var(--mint));
    color: var(--ink);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.form-success h3 {
    color: var(--ink);
}

.form-success p {
    color: var(--dark);
    margin: 0;
}

.service-form-section {
    background: var(--surface-alt);
}

.service-form-section .form-panel {
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) 0 var(--space-md);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-brand span {
    color: var(--primary);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

/* ========================================
   STORY / ABOUT
   ======================================== */

.prose {
    font-size: 1.08rem;
}

.prose p {
    margin-bottom: 1.15rem;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md) var(--space-lg);
}

.value-item h3 {
    margin-bottom: 0.35rem;
}

.value-item p {
    margin: 0;
}

.differentiator {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
}

.differentiator:last-child {
    border-bottom: none;
}

.differentiator h3 {
    margin-bottom: 0.35rem;
}

.differentiator p {
    margin: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.audience-item {
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(255, 107, 107, 0.25);
}

.audience-item h4 {
    margin-bottom: 0.35rem;
}

.audience-item p {
    margin: 0;
    font-size: 0.95rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md) var(--space-lg);
}

.faq-item h4 {
    margin-bottom: 0.4rem;
}

.faq-item p {
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 960px) {
    .grid-2,
    .grid-3,
    .feature-row,
    .insight-grid,
    .steps,
    .footer-content,
    .value-list,
    .audience-grid,
    .faq-grid,
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--space-md);
        box-shadow: none;
        transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
        gap: 0;
    }

    .nav-links.active {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding: var(--space-sm) var(--space-md) var(--space-md);
        box-shadow: var(--shadow-md);
    }

    .nav-links > li {
        border-bottom: 1px solid var(--light-grey);
    }

    .nav-links > li > a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 0.25rem;
        border-radius: 0;
    }

    .nav-cta {
        margin: 0.75rem 0 0 !important;
        justify-content: center !important;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0.5rem 0.75rem;
        display: none;
        min-width: 0;
        background: transparent;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 70vh;
        align-items: flex-end;
    }

    .hero-page {
        min-height: 36vh;
    }

    .grid-2,
    .grid-3,
    .feature-row,
    .insight-grid,
    .steps,
    .footer-content,
    .value-list,
    .audience-grid,
    .faq-grid,
    .contact-wrapper,
    .service-link {
        grid-template-columns: 1fr;
    }

    .service-link {
        gap: var(--space-sm);
    }

    .service-link-arrow {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: var(--space-lg) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
}
