* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1A1A1A;
            background: #ffffff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        @media (min-width: 640px) {
            .container {
                padding: 0 1.5rem;
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background: #6f7f69;
            color: white;
        }
        
        .btn-primary:hover {
            background: #5a6a54;
        }
        
        .btn-outline {
            background: transparent;
            color: #6f7f69;
            border-color: #6f7f69;
        }
        
        .btn-outline:hover {
            background: rgba(111, 127, 105, 0.1);
        }
        
        .halco-green {
            color: #6f7f69;
        }
        
        .badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(111, 127, 105, 0.1);
            color: #6f7f69;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 9999px;
            margin-bottom: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 50%, #F5F5F5 100%);
            padding: 4rem 0;
        }
        
        @media (min-width: 768px) {
            .hero {
                padding: 6rem 0;
            }
        }
        
        .logo {
            height: 4rem;
            margin: 0 auto 2rem;
            display: block;
        }
        
        @media (min-width: 768px) {
            .logo {
                height: 5rem;
            }
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.75rem;
            }
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #4b5563;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.5rem;
            }
        }
        
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 640px) {
            .hero-cta {
                flex-direction: row;
            }
        }
        
        /* Section Styles */
        section {
            padding: 4rem 0;
        }
        
        @media (min-width: 768px) {
            section {
                padding: 6rem 0;
            }
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }
        
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Cards */
        .card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(111, 127, 105, 0.2);
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }
        
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        .stat-card {
            text-align: center;
            padding: 1.5rem;
        }
        
        .stat-icon {
            width: 3rem;
            height: 3rem;
            margin: 0 auto 1rem;
            background: rgba(111, 127, 105, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #1A1A1A;
            margin-bottom: 0.5rem;
        }
        
        /* Problem/Solution Section */
        .problem-box {
            border: 2px solid #fee2e2;
            background: rgba(254, 226, 226, 0.3);
            padding: 1.5rem;
            border-radius: 0.5rem;
        }
        
        .solution-box {
            border: 2px solid rgba(111, 127, 105, 0.2);
            background: rgba(111, 127, 105, 0.05);
            padding: 1.5rem;
            border-radius: 0.5rem;
        }
        
        .problem-box h3 {
            color: #7f1d1d;
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }
        
        .solution-box h3 {
            color: #6f7f69;
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }
        
        .problem-box ul,
        .solution-box ul {
            list-style: none;
            padding: 0;
        }
        
        .problem-box li,
        .solution-box li {
            padding: 0.5rem 0;
            color: #4b5563;
        }
        
        /* Quote Box */
        .quote-box {
            background: white;
            border-left: 4px solid #6f7f69;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 0.5rem 0.5rem 0;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }
        
        .quote-box p {
            font-weight: 600;
            font-style: italic;
            color: #1A1A1A;
        }
        
        /* Number Circle */
        .number-circle {
            width: 4rem;
            height: 4rem;
            background: #6f7f69;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        /* Value Stack Section */
        .value-section {
            background: #6f7f69;
            color: white;
        }
        
        .value-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 0.5rem;
            display: flex;
            gap: 1rem;
        }
        
        .value-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .value-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
        }
        
        /* Guarantee Section */
        .guarantee-card {
            border: 2px solid #6f7f69;
            background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 100%);
            padding: 3rem 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .guarantee-icon {
            width: 3rem;
            height: 3rem;
            margin: 0 auto 1.5rem;
            background: rgba(111, 127, 105, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #6f7f69;
            box-shadow: 0 0 0 3px rgba(111, 127, 105, 0.1);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .form-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        @media (min-width: 768px) {
            .form-card {
                padding: 3rem;
            }
        }
        
        /* Footer */
        footer {
            background: #1A1A1A;
            color: white;
            padding: 3rem 0;
        }
        
        footer a {
            color: white;
            text-decoration: none;
        }
        
        footer a:hover {
            color: #6f7f69;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mt-8 { margin-top: 2rem; }
        
        .text-gray {
            color: #4b5563;
        }
        
        .text-lg {
            font-size: 1.125rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .leading-relaxed {
            line-height: 1.75;
        }
        
        .space-y-4 > * + * {
            margin-top: 1rem;
        }
        
        .max-w-3xl {
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .max-w-4xl {
            max-width: 56rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .max-w-5xl {
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .max-w-6xl {
            max-width: 72rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .object-cover {
            object-fit: cover;
        }
        
        /* SVG Icons */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }