/* ============================================
   AllyTech AI - Brand Styles
   Prestige positioning with sophisticated purple palette
   ============================================ */

/* ============================================
   CSS Variables & Theme
   ============================================ */
:root {
    /* Brand Color Palette - Per Brand Strategy */
    --deep-purple: #2D1B4E;
    --lilac: #B4A5D8;
    --accent-purple: #6B46C1;
    --charcoal: #1A1A1A;
    --cream: #F5F3F0;

    /* Supporting Colors */
    --success-green: #059669;
    --alert-amber: #D97706;
    --border-light: rgba(180, 165, 216, 0.15);
    --border-medium: rgba(180, 165, 216, 0.25);

    /* Surface colors */
    --surface: #FFFFFF;
    --surface-raised: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #404040;
    --text-tertiary: #606060;
    --text-muted: #505050;

    /* Sophisticated Gradients - Subtle, Editorial */
    --gradient-primary: linear-gradient(135deg, #2D1B4E 0%, #6B46C1 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(45, 27, 78, 0.03) 0%, rgba(180, 165, 216, 0.05) 100%);
    --gradient-accent: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(180, 165, 216, 0.1) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(45, 27, 78, 0.95) 0%, rgba(45, 27, 78, 0.85) 100%);

    /* Typography */
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(45, 27, 78, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 27, 78, 0.12);
    --shadow-lg: 0 12px 32px rgba(45, 27, 78, 0.16);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --cream: #141414;
        --charcoal: #E8E6E3;
        --deep-purple: #C4B5E3;
        --accent-purple: #9B7FD4;
        --lilac: #8B7AAF;
        --border-light: rgba(180, 165, 216, 0.15);
        --border-medium: rgba(180, 165, 216, 0.25);
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
        --gradient-subtle: linear-gradient(135deg, rgba(155, 127, 212, 0.04) 0%, rgba(139, 122, 175, 0.06) 100%);
        --gradient-accent: linear-gradient(135deg, rgba(155, 127, 212, 0.08) 0%, rgba(139, 122, 175, 0.08) 100%);
        --surface: #1E1E1E;
        --surface-raised: #252525;
        --text-primary: #E8E6E3;
        --text-secondary: #C0C0C0;
        --text-tertiary: #A0A0A0;
        --text-muted: #909090;
    }
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--charcoal);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-purple);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

@media (min-width: 1400px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
}

p {
    margin-bottom: var(--spacing-sm);
    max-width: 75ch;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--deep-purple);
}

a:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
    border-radius: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

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

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(20, 20, 20, 0.95);
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-purple);
}

.logo-img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.logo-ai {
    color: var(--accent-purple);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: var(--deep-purple);
    border-color: var(--deep-purple);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.25);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--deep-purple);
    border-color: var(--border-medium);
}

.btn-ghost:hover {
    background: var(--deep-purple);
    color: white;
    border-color: var(--deep-purple);
}

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

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

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

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-photo-bg {
    position: absolute;
    inset: 0;
    background-image: url('./output/output/hero_bg_a6mmripi.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.08;
    z-index: 1;
}

@media (prefers-color-scheme: dark) {
    .hero-photo-bg {
        opacity: 0.25;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.06;
}

@media (prefers-color-scheme: dark) {
    .hero-orb {
        opacity: 0.15;
    }
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lilac) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-purple);
    margin-top: var(--spacing-md);
    border-radius: 2px;
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    max-width: 65ch;
}

.hero-signature {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.hero-signature strong {
    color: var(--deep-purple);
    font-weight: 700;
}

.hero-cta-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-tertiary);
    margin-top: var(--spacing-sm);
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.hero .btn-ghost {
    color: var(--deep-purple);
    border-color: var(--border-medium);
}

.hero .btn-ghost:hover {
    background: var(--deep-purple);
    border-color: var(--deep-purple);
    color: white;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deep-purple);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 0.15rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

@media (max-width: 768px) {
    .hero-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo-bg,
    .hero-orb {
        will-change: auto;
    }
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-md);
    max-width: 800px;
}

.section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

@media (prefers-color-scheme: dark) {
    .section-subtitle {
        color: var(--text-secondary);
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-problem {
    padding: var(--spacing-md);
    border-left: 3px solid var(--accent-purple);
    background: var(--surface);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
    transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
    .why-problem {
        background: var(--surface);
    }
}
.why-problem:hover {
    transform: translateX(4px);
    border-left-color: var(--deep-purple);
}

.problem-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
    color: var(--accent-purple);
}
.problem-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.why-problem h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.why-problem p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    .why-problem p {
        color: var(--text-secondary);
    }
}

.why-solution {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: #2D1B4E;
    border-radius: var(--radius-lg);
    color: white;
}
.why-solution h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: white;
}
.why-solution p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}
.why-closing {
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   Pillars Section
   ============================================ */
.pillars-section {
    background: #2D1B4E;
    color: white;
}

.pillars-section .section-tag {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
}

.pillars-section .section-title {
    color: white;
}

.pillars-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.pillar-card {
    padding: var(--spacing-lg);
    background: white;
    border: none;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    .pillar-card {
        background: #1E1E1E;
    }
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}


.pillar-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-purple);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.pillar-card h3 {
    color: var(--deep-purple);
    margin-bottom: var(--spacing-sm);
}

.pillar-description {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.pillar-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    border-left: 3px solid var(--accent-purple);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0 0 0;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--surface);
}

@media (prefers-color-scheme: dark) {
    .services-section {
        background: var(--surface);
    }
}

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

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

.service-card {
    padding: var(--spacing-lg);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    position: relative;
    background: var(--surface);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    .service-card {
        background: var(--surface-raised);
    }
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 27, 78, 0.1);
    border-color: var(--border-medium);
}

.service-featured {
    border-color: var(--accent-purple);
    background: var(--gradient-subtle);
    position: relative;
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.12);
}

.service-badge,
.service-phase {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.service-badge {
    background: var(--accent-purple);
    color: white;
}

.service-phase {
    background: var(--deep-purple);
    color: white;
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

@media (prefers-color-scheme: dark) {
    .service-description {
        color: var(--text-secondary);
    }
}

.service-includes {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.service-pricing {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

@media (prefers-color-scheme: dark) {
    .pricing-label {
        color: var(--text-tertiary);
    }
}

.pricing-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-purple);
}

.services-offerings {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: var(--gradient-subtle);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.services-offerings h3 {
    text-align: left;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--deep-purple);
}
.services-offerings h3::after {
    display: none;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}
@media (max-width: 900px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 568px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}
.offering-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: left;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
    .offering-item {
        background: var(--surface-raised);
    }
}
.offering-item:hover {
    transform: translateX(3px);
    border-color: var(--accent-purple);
    box-shadow: none;
}
.offering-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 8px;
    color: var(--accent-purple);
}
.offering-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.offering-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.offering-item:hover .offering-icon {
    transform: none;
}
.offering-item strong {
    display: block;
    color: var(--deep-purple);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    font-family: var(--font-sans);
}
.offering-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-tertiary);
    margin: 0;
}
@media (prefers-color-scheme: dark) {
    .offering-item p {
        color: var(--text-tertiary);
    }
}

.services-no-do {
    margin-top: var(--spacing-xl);
}

.services-no-do h4 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-tertiary);
}

@media (prefers-color-scheme: dark) {
    .services-no-do h4 {
        color: var(--text-tertiary);
    }
}

.no-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}
@media (max-width: 768px) {
    .no-do-grid {
        grid-template-columns: 1fr;
    }
}
.no-do-item {
    display: flex;
    gap: 0.75rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--gradient-subtle);
    align-items: flex-start;
}
.no-do-x {
    font-size: 1.1rem;
    color: #C0392B;
    opacity: 0.7;
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 0.1rem;
}

.no-do-item strong {
    display: block;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
}

.no-do-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    .no-do-item p {
        color: var(--text-muted);
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--cream);
}

.about-section > .container > .about-content {
    max-width: 750px;
}

.about-content {
    padding: var(--spacing-md) 0;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-md);
}

.about-values {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

@media (prefers-color-scheme: dark) {
    .about-values {
        background: var(--surface-raised);
    }
}

.about-values h3 {
    margin-bottom: var(--spacing-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.value-item {
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}
.value-item:nth-child(even) {
    border-right: none;
}
.value-item:nth-child(3),
.value-item:nth-child(4) {
    border-bottom: none;
}

.value-item strong {
    display: block;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    .value-item p {
        color: var(--text-secondary);
    }
}

.about-promise {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gradient-subtle);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.about-promise h3 {
    margin-bottom: var(--spacing-sm);
}

.about-promise p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Insights Section
   ============================================ */
.insights-section {
    background: var(--cream);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}
.insight-card {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
    background: var(--surface);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-sm);
    align-items: center;
}
@media (prefers-color-scheme: dark) {
    .insight-card {
        background: var(--surface-raised);
    }
}
.insight-card:last-child {
    border-bottom: none;
}
.insight-card:hover {
    background: var(--gradient-subtle);
    transform: none;
    box-shadow: none;
    padding-left: calc(var(--spacing-lg) + 4px);
}
.insight-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    background: var(--accent-purple);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}
.insight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
    font-weight: 600;
}
.insight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
    .insight-card p {
        color: var(--text-tertiary);
    }
}
.insight-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .insight-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.insights-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    background: var(--surface);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (max-width: 568px) {
    .insights-cta {
        flex-direction: column;
        text-align: center;
    }
}

.insights-cta p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--charcoal);
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
@media (prefers-color-scheme: dark) {
    .trust-section {
        background: var(--surface);
    }
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.trust-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--spacing-md);
    border-right: 1px solid var(--border-light);
    transition: background 0.2s ease;
}
.trust-feature:last-child {
    border-right: none;
}
.trust-feature:hover {
    background: var(--gradient-subtle);
}
.trust-check {
    font-size: 1.25rem;
    color: var(--success-green);
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}
.trust-feature strong {
    display: block;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}
.trust-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: #2D1B4E;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(180, 165, 216, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 70, 193, 0.12) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--lilac);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--cream);
}
@media (prefers-color-scheme: dark) {
    .contact-section {
        background: var(--cream);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
}

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

.contact-form {
    padding: var(--spacing-lg);
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(45, 27, 78, 0.04);
}

.form-note {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(180, 165, 216, 0.05));
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--charcoal);
    -webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    .form-footer {
        color: var(--text-muted);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-card {
    padding: var(--spacing-lg);
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    color: var(--deep-purple);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.contact-steps {
    list-style: none;
    counter-reset: step-counter;
}

.contact-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--accent-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-steps li strong {
    display: block;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
}

.contact-steps li p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    .contact-steps li p {
        color: var(--text-secondary);
    }
}

.contact-method {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.contact-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.contact-method strong {
    display: block;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
}

.contact-method p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #2D1B4E;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

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

.footer-brand .logo {
    color: white;
    margin-bottom: var(--spacing-sm);
}

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

.footer-tagline {
    font-size: 0.85rem;
    color: var(--lilac);
    font-weight: 600;
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-sans);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--lilac);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

/* ============================================
   Utilities
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-purple), var(--lilac));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }

    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal-on-scroll.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
