/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - STRICT - ONLY these colors */
    --hyper-blue: #0B5CFF;
    --dark-yellow: #F5B400;
    --white: #FFFFFF;
    --black: #0B0B0B;
    
    /* Spacing (Apple-style - generous) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows (subtle, Apple-style) */
    --shadow-sm: 0 2px 8px rgba(11, 11, 11, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 11, 11, 0.12);
    --shadow-lg: 0 8px 24px rgba(11, 11, 11, 0.16);
    
    /* Typography */
    --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-system);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    font-size: 16px;
    padding-top: 64px;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        padding-top: 56px;
    }
}

a {
    color: var(--black);
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--dark-yellow);
    color: var(--black);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #E5A500;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary-outline {
    background-color: transparent;
    color: var(--hyper-blue);
    border: 1.5px solid var(--hyper-blue);
    font-weight: 700;
    box-shadow: none;
}

.btn-secondary-outline:hover {
    background-color: var(--hyper-blue);
    color: var(--white);
    transform: translateY(-1px);
}

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

.btn-header {
    background-color: var(--hyper-blue);
    color: var(--white);
    height: 36px;
    padding: 0 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
}

.btn-header:hover {
    background-color: #0A4FE6;
}

.btn-cta {
    font-size: 1.125rem;
    padding: 0 32px;
    height: 56px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
    height: 64px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .site-header {
        height: 56px;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header-container {
        padding: 0 var(--spacing-md);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

@media (max-width: 767px) {
    .header-brand-name {
        font-size: 1rem;
    }
    
    .btn-header {
        font-size: 0.8125rem;
        padding: 0 12px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
        padding: var(--spacing-4xl) var(--spacing-xl);
    }
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('./assets/Hero Pool cage image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 30%, transparent 70%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

@media (max-width: 767px) {
    .hero-card {
        max-width: 92%;
        padding: 1.5rem 1.25rem;
        margin: 0 auto;
        gap: var(--spacing-sm);
    }
}

.hero-brand-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hyper-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-brand-label {
        text-align: left;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--black);
    margin: 0;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        text-align: left;
        line-height: 1.1;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.05;
        max-width: 28ch;
        margin-bottom: 24px;
    }
}

.hero-subtitle {
    margin: 0;
    margin-top: 8px;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.5;
    font-weight: 400;
    max-width: 42ch;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-top: 6px;
        margin-bottom: var(--spacing-lg);
    }
}

.hero-trust-bullets {
    list-style: none;
    margin: 0;
    margin-bottom: var(--spacing-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 768px) {
    .hero-trust-bullets {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }
}

.hero-trust-bullets li {
    font-size: 0.875rem;
    color: var(--black);
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.hero-trust-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--hyper-blue);
    font-weight: bold;
    font-size: 1.125rem;
}

.hero-supporting-statement {
    margin: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.6;
    opacity: 0.75;
    padding-left: 12px;
    border-left: 3px solid var(--dark-yellow);
}

@media (min-width: 768px) {
    .hero-supporting-statement {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
}

.hero-cta {
    margin: 0;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 14px;
        width: auto;
        margin-top: 0;
    }
}

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

@media (min-width: 640px) {
    .hero-cta .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--white);
}

@media (max-width: 767px) {
    .services-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.2s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon {
    color: var(--hyper-blue);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-name {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.5;
    font-weight: 500;
}

.service-card-highlighted {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-2xl);
    background-color: var(--white);
    border: 2px solid var(--hyper-blue);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    width: 100%;
}

.service-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
}

@media (max-width: 767px) {
    .service-card-list {
        grid-template-columns: 1fr;
    }
}

.service-card-item {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    padding-left: var(--spacing-sm);
}

.services-footer-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.6;
    margin-top: var(--spacing-xl);
    opacity: 0.8;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--white);
}

@media (max-width: 767px) {
    .process-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background-color: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(11, 11, 11, 0.08);
    box-shadow: var(--shadow-sm);
}

.process-number {
    width: 64px;
    height: 64px;
    background-color: var(--hyper-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--black);
}

.process-card p {
    color: var(--black);
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.9375rem;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background-color: var(--white);
    border-top: 1px solid rgba(11, 11, 11, 0.08);
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    width: 100%;
}

@media (max-width: 767px) {
    .trust-strip-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    color: var(--black);
    font-size: 0.9375rem;
}

@media (max-width: 767px) {
    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

@media (min-width: 768px) {
    .trust-strip-item {
        justify-content: flex-start;
    }
}

.trust-strip-icon {
    color: var(--dark-yellow);
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.125rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background-color: var(--hyper-blue);
    text-align: center;
}

@media (max-width: 767px) {
    .cta-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.cta-headline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button-wrapper .btn {
    min-width: auto;
}

@media (max-width: 767px) {
    .cta-button-wrapper .btn {
        width: 100%;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--white);
    color: var(--black);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(11, 11, 11, 0.08);
}

@media (max-width: 767px) {
    .footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

.footer p {
    margin-bottom: var(--spacing-xs);
    color: var(--black);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media (max-width: 767px) {
    .hero {
        min-height: 500px;
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.15;
        margin-bottom: 14px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 8px;
        margin-bottom: var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-trust-bullets {
        margin-bottom: var(--spacing-md);
        gap: 8px;
    }
    
    .hero-supporting-statement {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        width: 100%;
        flex-direction: column;
        margin-top: 8px;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
