/* =========================================================
   VEND-Z DESIGN SYSTEM — NZ COLOR PALETTE
   New Zealand inspired: Pohutukawa Red, Kauri Green, Cook Strait Teal
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NZ COLOR PALETTE */
:root {
    --pohutukawa: #C8102E;    /* NZ Red */
    --kauri: #1A3A3A;         /* Deep Green-Grey */
    --teal: #007C8A;          /* Cook Strait Teal */
    --teal-light: #0DA5B5;    /* Lighter Teal */
    --gold: #D4A037;          /* NZ Gold */
    --charcoal: #2A2A2A;      /* Dark Grey */
    --light-grey: #F5F5F5;    /* Light Grey */
    --white: #FFFFFF;
}

/* TYPOGRAPHY */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--kauri);
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
    background: var(--white);
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--kauri);
    letter-spacing: -1px;
}

.logo .nz {
    color: var(--teal);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
}

/* =========================================================
   COMING SOON BANNER
   ========================================================= */
.coming-soon-banner {
    background: #FFD700;
    padding: 0.75rem 0;
    overflow: hidden;
    border-bottom: 2px solid #FFC700;
    width: 100%;
}

.scroll-notice {
    display: flex;
    width: 200%;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.scroll-notice span {
    display: inline-block;
    width: 50%;
    padding: 0 1rem;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.95rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    background: linear-gradient(135deg, var(--kauri) 0%, var(--teal) 100%);
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.95);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.cta-button {
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: var(--pohutukawa);
    color: white;
}

.primary-btn:hover {
    background: darken(#C8102E, 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.small-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.learn-more {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--pohutukawa);
}

/* =========================================================
   GRID LAYOUTS
   ========================================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
    background: var(--light-grey);
    padding: 4rem 0;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--kauri);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* FEATURE CARDS */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: var(--kauri);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* PRICING CARDS */
.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--teal);
    background: rgba(0, 124, 138, 0.02);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--kauri);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #999;
}

.pricing-card ul {
    text-align: left;
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.content {
    padding: 4rem 0;
}

.why-choose {
    background: var(--light-grey);
    padding: 4rem 0;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-item h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

.stats-section {
    background: var(--kauri);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.stats-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.industries {
    padding: 4rem 0;
    text-align: center;
}

.industries h2 {
    margin-bottom: 1rem;
}

.industries > .container > p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

.industry-badge {
    background: var(--teal);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--pohutukawa) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.95);
}

.values-section {
    background: var(--light-grey);
    padding: 4rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--teal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    color: var(--kauri);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--kauri) 0%, var(--teal) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--kauri);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
}

/* BENEFITS LIST */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* =========================================================
   FORMS & REGISTRATION
   ========================================================= */
.form-section {
    background: var(--light-grey);
    padding: 4rem 0;
}

.form-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.form-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-content > p {
    text-align: center;
    color: #666;
}

.signup-form {
    margin: 2rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 124, 138, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--kauri);
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}