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

        html {
            scroll-behavior: smooth;
            color-scheme: light only;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #ffffff !important;
            color: #1a1a1a;
            line-height: 1.8;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 500;
            line-height: 1.3;
        }

        p {
            font-size: 18px;
            margin-bottom: 1.5rem;
        }

        /* Header */
        header {
            padding: 4rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            background: #ffffff;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .logo img {
            height: 170px;
            width: auto;
            display: block;
        }

        .header-contact {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            gap: 0.4rem;
            margin-top: 20px;
            margin-bottom: 0;
            font-size: 14px;
            color: #1a1a1a;
        }

        .header-contact a {
            text-decoration: none;
            color: #1a1a1a;
            transition: color 0.2s;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.4em;
        }

        .header-contact a .icon {
            flex-shrink: 0;
        }

        .header-contact a:hover {
            color: #6B4FA0;
        }

        .header-contact .divider {
            color: #cccccc;
            margin: 0 0.6rem;
        }

        @media (max-width: 900px) {
            header {
                padding: 2.5rem 1.5rem 1.5rem;
            }

            .logo img {
                height: 160px;
            }

            .header-contact {
                flex-wrap: wrap;
                row-gap: 0.5rem;
                margin-top: 16px;
                margin-bottom: 0;
                font-size: 15px;
                gap: 0.35rem;
            }

            .header-contact .divider {
                margin: 0 0.4rem;
            }
        }

        /* Hero */
        .hero {
            padding: 2.5rem 2rem 6rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            font-size: 68px;
            margin-bottom: 2rem;
            color: #1a1a1a;
            font-weight: 400;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 22px;
            color: #555555;
            margin-bottom: 3rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .button-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: #1a1a1a;
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s, transform 0.2s;
            letter-spacing: 0.3px;
            white-space: nowrap;
            line-height: 1;
        }

        .button-primary:hover {
            opacity: 0.85;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 42px;
            }

            .hero {
                padding: 1.5rem 2rem 4rem;
            }

            .hero-subtitle {
                font-size: 18px;
            }
        }

        /* Section spacing */
        section {
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 3rem;
            color: #1a1a1a;
            font-weight: 400;
        }

        /* Signals Section */
        .signals {
            padding: 5rem 2rem;
            text-align: center;
        }

        .section-container-narrow {
            max-width: 700px;
            margin: 0 auto;
        }

        .signals p {
            font-size: 21px;
            color: #333333;
            line-height: 1.7;
        }

        .signals p:last-child {
            margin-bottom: 0;
            color: #1a1a1a;
        }

        /* What is a Discovery Call */
        .discovery-section {
            background: #fafafa;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }

        .discovery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .discovery-left p {
            margin-bottom: 1.5rem;
        }

        .discovery-left h2 {
            font-size: 38px;
            margin-bottom: 1.5rem;
            font-weight: 400;
            color: #1a1a1a;
        }

        .discovery-what-happens {
            background: #ffffff;
            padding: 2rem;
            border: 1px solid #e8e8e8;
            margin-top: 2rem;
        }

        .discovery-what-happens h3 {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .discovery-what-happens ol {
            list-style: decimal;
            padding-left: 1.5rem;
        }

        .discovery-list {
            list-style: none;
            padding: 0;
        }

        .discovery-what-happens li {
            font-size: 16px;
            margin-bottom: 1rem;
            color: #555555;
            line-height: 1.7;
        }

        .discovery-list li {
            font-size: 16px;
            margin-bottom: 1rem;
            color: #555555;
            line-height: 1.7;
        }

        .discovery-list li:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .discovery-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .discovery-left h2 {
                font-size: 28px;
            }
        }

        /* Final CTA */
        .final-cta {
            background: #1a1a1a;
            color: #ffffff;
            text-align: center;
            padding: 6rem 2rem;
        }

        .final-cta .section-container {
            max-width: 600px;
        }

        .final-cta h2 {
            font-size: 48px;
            margin-bottom: 1.5rem;
            font-weight: 400;
            color: #ffffff;
        }

        .final-cta p {
            font-size: 18px;
            color: #e8e8e8;
            margin-bottom: 2.5rem;
        }

        .button-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: #ffffff;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s, transform 0.2s;
            letter-spacing: 0.3px;
            white-space: nowrap;
            line-height: 1;
        }

        .button-secondary:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .final-cta h2 {
                font-size: 32px;
            }
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #999999;
            padding: 4rem 2rem 3rem;
            text-align: center;
            font-size: 14px;
            border-top: 1px solid #2a2a2a;
        }

        .footer-logo {
            height: 120px;
            width: auto;
            margin-bottom: 2rem;
        }

        .logo-footer {
            height: 120px;
            width: auto;
            margin-bottom: 2rem;
            background: transparent !important;
        }

        footer a {
            color: #999999;
            text-decoration: none;
            transition: color 0.2s;
        }

        footer a:hover {
            color: #ffffff;
        }

        /* Why Choose Section - simple text */
        .why-choose {
            background: #ffffff;
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .why-choose h2 {
            font-size: 38px;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .why-choose-list {
            list-style: none;
        }

        .why-choose-list li {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .why-choose-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .why-choose-list strong {
            display: block;
            font-size: 18px;
            margin-bottom: 0.75rem;
            color: #1a1a1a;
            font-weight: 500;
        }

        .why-choose-list span {
            font-size: 16px;
            color: #777777;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .why-choose h2 {
                font-size: 28px;
            }
        }

        /* Accent purple - very subtle */
        .accent {
            color: #6B4FA0;
        }