:root {
    --primary: #ff3e3e;
    --secondary: #121212;
    --text: #1a1a1a;
    --text-muted: #666;
    --bg: #fcfcfc;
    --accent: #e5e5e5;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    font-weight: 800;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Nav */
header {
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--accent);
    position: sticky;
    top: 0;
    background: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--secondary);
}

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

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 40px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section - Broken Grid */
.hero {
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.hero-content {
    grid-column: 1 / 7;
    z-index: 2;
    padding-right: 40px;
    position: relative;
}

.hero-cta-box {
    margin-top: 40px;
}

.hero-text-img {
    width: 100%;
    max-width: 1800px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    max-width: 500px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-img-box {
    grid-column: 8 / 13;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--accent);
}

.hero-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Education & Philosophy */
.philosophy {
    padding: 140px 0;
    background-color: #fff;
    border-top: 1px solid var(--accent);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.philosophy-content {
    grid-column: 1 / 8;
}

.philosophy h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 40px;
}

.philosophy p {
    font-size: 1.4rem;
    max-width: 800px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.philosophy p strong {
    color: var(--secondary);
    font-weight: 700;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.education-item {
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid var(--primary);
}

.education-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Features/Strategy Section */
.features-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Case Study (Proof) */
.case-study-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-label {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.case-study-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.case-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.case-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat.arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
    max-width: 200px;
}

.case-study-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    position: relative;
    padding-top: 20px;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
}

.step::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.step-num {
    display: block;
    font-size: 3rem;
    opacity: 0.1;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    padding: 140px 0;
    background-color: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    padding: 60px;
    background: #fff;
    border: 5px solid #000000;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.pricing-card.featured {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
}

.tier-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

.hosting-note {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 40px;
}

.features {
    list-style: none;
    margin-bottom: 60px;
    flex-grow: 1;
}

.features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

.feature-highlight {
    font-weight: 800;
    color: var(--primary);
}

.pricing-card.featured .feature-highlight {
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px !important;
    margin: 10px -25px;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(255, 62, 62, 0.25);
    border-bottom: none !important;
    display: flex;
    align-items: center;
}

.pricing-card.featured .feature-highlight::before {
    content: '★';
    margin-right: 10px;
    font-size: 0.8rem;
}

.pricing-card.featured .features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .btn-case {
    border-color: var(--white);
    color: var(--white);
}

.pricing-card.featured .btn-case:hover {
    background: var(--white);
    color: var(--secondary);
}

.pricing-card.featured .tier-name {
    color: var(--primary);
}

.btn-case {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--secondary);
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.pricing-notes {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.note-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.note-item strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Contact Footer */
.agency-footer {
    padding: 140px 0;
    background: var(--secondary);
    color: var(--bg);
}

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

.footer-inner h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 60px;
}

.footer-inner .section-label {
    color: white;
    opacity: 0.5;
}

.footer-copyright {
    margin-top: 60px;
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 24px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--bg);
    border: 2px solid var(--bg);
    transition: var(--transition);
}

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

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

/* Nav CTA */
.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #d62f2f;
    opacity: 1;
}

/* Mobile */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 2;
        margin-top: 40px;
        padding-right: 0;
    }

    .hero-img-box {
        order: 1;
        width: 100%;
        transform: none;
        box-shadow: 20px 20px 0 var(--accent);
    }

    .philosophy-content {
        grid-column: 1 / 13;
    }

    .philosophy h2 {
        font-size: 3rem;
    }

    .philosophy p {
        font-size: 1.1rem;
    }

    .education-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-study-card {
        grid-template-columns: 1fr;
    }

    .case-study-image {
        order: -1;
    }

    .case-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat.arrow {
        transform: rotate(90deg);
        margin-left: 20px;
    }

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

    .pricing-card {
        padding: 40px 20px;
    }

    header {
        height: 80px;
    }

    nav {
        display: none;
    }

    .nav-cta {
        display: none;
    }
}