        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #FAFAF8;
            color: #1C1C1C;
            overflow-x: hidden;
            line-height: 1.7;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        header {
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
            position: sticky;
            top: 0;
            background: #FAFAF8;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.8em;
            font-weight: 400;
            color: #1C1C1C;
            letter-spacing: 8px;
        }
        .logo-link {
            display: flex;              /* or inline-flex */
            align-items: center;
            height: 100%;               /* or specify your header height */
        }

        nav {
            display: flex;
            align-items: baseline;
            gap: 50px;
        }

        .nav-links {
            display: flex;
            align-items: baseline;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #1C1C1C;
            text-decoration: none;
            font-size: 0.95em;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
        }

        .nav-links a:after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #1C1C1C;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #666666;
        }

        .header-cta {
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 10px 28px;
            text-decoration: none;
            font-size: 0.85em;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #1C1C1C;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .header-cta:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #FAFAF8;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .header-cta:hover:before {
            left: 0;
        }

        .header-cta:hover {
            color: #1C1C1C;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(28, 28, 28, 0.1);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
            color: #1C1C1C;
        }

        .hero {
            padding: 120px 0 100px;
            opacity: 0;
            animation: fadeIn 0.8s ease 0.2s forwards;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero-label {
            font-size: 0.85em;
            letter-spacing: 3px;
            color: #666666;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .hero h2 {
            font-size: 4.5em;
            font-weight: 400;
            color: #1C1C1C;
            margin-bottom: 40px;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.4em;
            color: #333333;
            max-width: 700px;
            line-height: 1.7;
            margin-bottom: 50px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 18px 48px;
            text-decoration: none;
            font-size: 1em;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #1C1C1C;
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(250, 250, 248, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover:before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            background: #FAFAF8;
            color: #1C1C1C;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.15);
        }

        .btn-primary:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(28, 28, 28, 0.1);
        }

        .btn-secondary {
            color: #1C1C1C;
            padding: 18px 48px;
            text-decoration: none;
            font-size: 1em;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #1C1C1C;
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #1C1C1C;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-secondary:hover:before {
            left: 0;
        }

        .btn-secondary:hover {
            color: #FAFAF8;
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.15);
        }

        .email-capture-section {
            background: #f5f5f3;
            border: 1px solid #e0e0e0;
            padding: 60px 0;
            opacity: 0;
        }

        .email-capture-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .email-capture-container h3 {
            font-size: 2em;
            font-weight: 400;
            margin-bottom: 15px;
            color: #1C1C1C;
        }

        .email-capture-container p {
            color: #666666;
            font-size: 1.1em;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .email-capture-form {
            display: flex;
            gap: 15px;
            max-width: 550px;
            margin: 0 auto;
        }

        .email-capture-form input {
            flex: 1;
            padding: 18px 25px;
            border: 1px solid #d0d0d0;
            font-size: 1em;
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #FAFAF8;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .email-capture-form input:focus {
            outline: none;
            border-color: #1C1C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 28, 28, 0.08);
        }

        .email-capture-form button {
            padding: 18px 40px;
            background: #1C1C1C;
            color: #FAFAF8;
            border: 2px solid #1C1C1C;
            font-size: 0.95em;
            letter-spacing: 1.5px;
            cursor: pointer;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .email-capture-form button:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #FAFAF8;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .email-capture-form button:hover:before {
            left: 0;
        }

        .email-capture-form button span {
            position: relative;
            z-index: 1;
        }

        .email-capture-form button:hover {
            color: #1C1C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 28, 28, 0.15);
        }

        .email-capture-form button:disabled {
            background: #cccccc;
            border-color: #cccccc;
            cursor: not-allowed;
        }

        .email-capture-success {
            display: none;
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 20px 30px;
            margin-top: 20px;
            text-align: center;
            letter-spacing: 1px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            animation: fadeIn 0.5s ease;
        }

        .use-cases-section {
            padding: 120px 0;
            background: #f5f5f3;
            opacity: 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 100px;
        }

        .section-label {
            font-size: 0.85em;
            letter-spacing: 3px;
            color: #666666;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .section-header h2 {
            font-size: 3em;
            font-weight: 400;
            color: #1C1C1C;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.3em;
            color: #333333;
            line-height: 1.7;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .use-case-card {
            background: #FAFAF8;
            padding: 50px 40px;
            border: 1px solid #e0e0e0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .use-case-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(28, 28, 28, 0.12);
            border-color: #1C1C1C;
        }

        .use-case-card:hover .use-case-label {
            color: #1C1C1C;
        }

        .use-case-label {
            font-size: 0.8em;
            letter-spacing: 2px;
            color: #999999;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .use-case-card h3 {
            font-size: 1.8em;
            font-weight: 400;
            margin-bottom: 25px;
            color: #1C1C1C;
        }

        .use-case-benefits {
            list-style: none;
            margin-top: 25px;
        }

        .use-case-benefits li {
            padding: 12px 0;
            color: #555555;
            line-height: 1.7;
            position: relative;
            padding-left: 25px;
        }

        .use-case-benefits li:before {
            content: "—";
            position: absolute;
            left: 0;
            color: #1C1C1C;
        }

        .how-it-works-section {
            padding: 120px 0;
            opacity: 0;
        }

        .timeline {
            max-width: 900px;
            margin: 80px auto 0;
            position: relative;
        }

        .timeline:before {
            content: "";
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: #e0e0e0;
        }

        .timeline-item {
            position: relative;
            padding-left: 80px;
            margin-bottom: 60px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-number {
            position: absolute;
            left: 0;
            width: 60px;
            height: 60px;
            background: #1C1C1C;
            color: #FAFAF8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:hover .timeline-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.2);
        }

        .timeline-content h3 {
            font-size: 1.8em;
            font-weight: 400;
            margin-bottom: 15px;
            color: #1C1C1C;
        }

        .timeline-content p {
            color: #555555;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .faq-section {
            padding: 120px 0;
            background: #f5f5f3;
            opacity: 0;
        }

        .faq-container {
            max-width: 900px;
            margin: 80px auto 0;
        }

        .faq-item {
            background: #FAFAF8;
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: #1C1C1C;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(28, 28, 28, 0.05);
        }

        .faq-question {
            width: 100%;
            padding: 30px 40px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15em;
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #1C1C1C;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #666666;
        }

        .faq-icon {
            font-size: 1.5em;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 300;
        }

        .faq-item.active .faq-icon {
            transform: rotate(135deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 40px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 40px 30px;
        }

        .faq-answer p {
            color: #555555;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .features-section {
            padding: 120px 0;
            opacity: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
        }

        .feature-card {
            padding: 50px 40px;
            border: 1px solid #e0e0e0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: #FAFAF8;
        }

        .feature-card:hover {
            border-color: #1C1C1C;
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 70px rgba(28, 28, 28, 0.12);
        }

        .feature-card:hover h3 {
            color: #333333;
        }

        .feature-card h3 {
            font-size: 1.8em;
            font-weight: 400;
            margin-bottom: 20px;
            color: #1C1C1C;
        }

        .feature-card p {
            color: #555555;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .form-section {
            padding: 120px 0;
            background: #1C1C1C;
            color: #FAFAF8;
            opacity: 0;
        }

        .team-section {
            padding: 120px 0;
            background: #FAFAF8;
            opacity: 0;
        }

        .team-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .team-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .team-logo-image {
            height: 100px;
            width: auto;
        }

        .team-logo-text {
            font-size: 2.5em;
            font-weight: 400;
            color: #1C1C1C;
            letter-spacing: 8px;
        }

        .team-subtitle {
            font-size: 1.1em;
            color: #666666;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .team-content h2 {
            font-size: 3em;
            font-weight: 400;
            color: #1C1C1C;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .team-content p {
            font-size: 1.2em;
            color: #555555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .team-mission {
            background: #f5f5f3;
            padding: 40px;
            margin-top: 50px;
            border-left: 3px solid #1C1C1C;
        }

        .team-mission h3 {
            font-size: 1.5em;
            font-weight: 400;
            color: #1C1C1C;
            margin-bottom: 20px;
        }

        .team-mission p {
            font-size: 1.1em;
            color: #555555;
            margin-bottom: 0;
        }

        .form-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: start;
        }

        .form-intro h2 {
            font-size: 3.5em;
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .form-intro p {
            font-size: 1.2em;
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .form-features {
            list-style: none;
        }

        .form-features li {
            padding: 20px 0;
            border-bottom: 1px solid #333333;
            font-size: 1.05em;
            color: #cccccc;
            letter-spacing: 0.5px;
        }

        .form-features li:first-child {
            border-top: 1px solid #333333;
        }

        .form-container {
            background: #FAFAF8;
            padding: 60px;
            color: #1C1C1C;
        }

        .form-container h3 {
            font-size: 1.8em;
            font-weight: 400;
            margin-bottom: 40px;
            color: #1C1C1C;
        }

        .success-message {
            display: none;
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 20px 30px;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 1px;
            animation: fadeIn 0.5s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .form-group {
            margin-bottom: 30px;
        }

        label {
            display: block;
            color: #1C1C1C;
            margin-bottom: 12px;
            font-size: 0.9em;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        input, select, textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #d0d0d0;
            font-size: 1em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #fafafa;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #1C1C1C;
            background: #FAFAF8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 28, 28, 0.08);
        }

        input.error, select.error, textarea.error {
            border-color: #d32f2f;
            animation: shake 0.5s;
        }

        input.success, select.success, textarea.success {
            border-color: #388e3c;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231C1C1C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
        }

        textarea {
            resize: vertical;
            min-height: 140px;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: #1C1C1C;
            color: #FAFAF8;
            border: none;
            font-size: 1em;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            border: 2px solid #1C1C1C;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(250, 250, 248, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover:before {
            width: 400px;
            height: 400px;
        }

        .submit-btn:hover {
            background: #FAFAF8;
            color: #1C1C1C;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.2);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn:disabled {
            background: #cccccc;
            border-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn:disabled:hover {
            background: #cccccc;
            color: #666666;
            transform: none;
            box-shadow: none;
        }

        .submit-btn.loading {
            pointer-events: none;
        }

        .submit-btn.loading:after {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid transparent;
            border-top-color: #FAFAF8;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .field-error {
            color: #d32f2f;
            font-size: 0.85em;
            margin-top: 8px;
            display: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .field-error.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        footer {
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid #333333;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-image {
            height: 70px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-logo-text {
            font-size: 1.8em;
            letter-spacing: 8px;
            color: #FAFAF8;
        }

        .footer-description {
            color: #999999;
            line-height: 1.8;
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            color: #999999;
            text-decoration: none;
            font-size: 0.9em;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .footer-social a:hover {
            color: #FAFAF8;
        }

        .footer-column h4 {
            font-size: 0.85em;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-weight: 400;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #999999;
            text-decoration: none;
            font-size: 0.95em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .footer-links a:hover {
            color: #FAFAF8;
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666666;
            font-size: 0.85em;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #666666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #FAFAF8;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .visible {
            opacity: 1 !important;
            animation: fadeIn 0.8s ease forwards;
        }

        @media (max-width: 1024px) {
            .form-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            

            header {
                padding: 20px 0;
            }

            .header-content {
                align-items: center;
            }

            .logo-text {
                font-size: 1.4em;
                letter-spacing: 6px;
            }

            .team-logo-image {
            height: 70px;
        }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #FAFAF8;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px;
                flex-direction: column;
                gap: 0;
            }

            nav.active {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-links a {
                display: block;
                padding: 15px 0;
            }

            .header-cta {
                margin-top: 20px;
                display: block;
                text-align: center;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .hero h2 {
                font-size: 2.8em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .email-capture-form {
                flex-direction: column;
            }

            .email-capture-form button {
                width: 100%;
            }

            .email-capture-container h3 {
                font-size: 1.6em;
            }

            .features-section {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .section-header h2 {
                font-size: 2.2em;
            }
            .team-content h2 {
                font-size: 2.2em;
            }

            .section-header p {
                font-size: 1.1em;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 40px 30px;
            }

            .timeline:before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 60px;
            }

            .timeline-number {
                width: 40px;
                height: 40px;
                font-size: 1em;
            }

            .timeline-content h3 {
                font-size: 1.4em;
            }

            .faq-question {
                padding: 25px 20px;
                font-size: 1em;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 25px;
            }

            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .form-section {
                padding: 80px 0;
            }

            .form-intro h2 {
                font-size: 2.5em;
            }

            .form-intro p {
                font-size: 1.1em;
            }

            .form-container {
                padding: 40px 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
            .benefits-grid,
            .pricing-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h2 {
                font-size: 2.2em;
            }

            .section-header h2 {
                font-size: 1.8em;
            }
            .team-content h2 {
                font-size: 1.8em;
            }

            .form-intro h2 {
                font-size: 2em;
            }

            .feature-card h3 {
                font-size: 1.5em;
            }
        }
        
        
        
         .story-section {
            padding: 100px 0;
            opacity: 0;
        }

        .story-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-content h2 {
            font-size: 2.5em;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .story-content p {
            font-size: 1.2em;
            color: #555555;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .mission-section {
            padding: 100px 0;
            background: #1C1C1C;
            color: #FAFAF8;
            text-align: center;
            opacity: 0;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-content h2 {
            font-size: 2.5em;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .mission-content p {
            font-size: 1.3em;
            color: #cccccc;
            line-height: 1.8;
        }

        .values-section {
            padding: 100px 0;
            background: #f5f5f3;
        }


        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .value-card {
            background: #FAFAF8;
            padding: 50px 40px;
            border: 1px solid #e0e0e0;
        }

        .value-card h3 {
            font-size: 1.6em;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .value-card p {
            color: #555555;
            line-height: 1.8;
        }

        .labs-section {
            padding: 100px 0;
        }

        .labs-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .labs-logo {
            font-size: 3em;
            font-weight: 400;
            letter-spacing: 8px;
            margin-bottom: 20px;
        }

        .labs-subtitle {
            font-size: 1.2em;
            color: #666666;
            margin-bottom: 40px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .labs-content h2 {
            font-size: 2.5em;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .labs-content p {
            font-size: 1.2em;
            color: #555555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: #f5f5f3;
        }

        .cta-section h2 {
            font-size: 3em;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .cta-section p {
            font-size: 1.3em;
            color: #555555;
            margin-bottom: 40px;
        }

        .hero-cta {
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 18px 48px;
            text-decoration: none;
            font-size: 1em;
            letter-spacing: 1.5px;
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: all 0.3s;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.15);
        }
         .benefits-section {
            padding: 100px 0;
            background: #f5f5f3;
            opacity: 0;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
        }

        .benefit-card {
            background: #FAFAF8;
            padding: 50px 40px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(28, 28, 28, 0.1);
            border-color: #1C1C1C;
        }

        .benefit-card h3 {
            font-size: 1.6em;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .benefit-card p {
            color: #555555;
            line-height: 1.8;
        }

           .how-it-works {
            padding: 100px 0;
            opacity: 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #1C1C1C;
            color: #FAFAF8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            margin: 0 auto 25px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .step h3 {
            font-size: 1.4em;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .step p {
            color: #555555;
            line-height: 1.7;
        }

        .professionals-section {
            padding: 100px 0;
            background: #1C1C1C;
            color: #FAFAF8;
            opacity: 0;
        }

        .professionals-section h2 {
            color: #FAFAF8;
        }

        .professionals-section p {
            color: #cccccc;
        }

        .professionals-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .professional-type {
            padding: 30px;
            border: 1px solid #333333;
            transition: all 0.3s;
            text-align: center;
        }

        .professional-type:hover {
            border-color: #FAFAF8;
            background: rgba(250, 250, 248, 0.05);
        }

        .professional-type h4 {
            font-size: 1.2em;
            font-weight: 400;
            color: #FAFAF8;
        }
        
        
        
        .contact-section {
            padding: 100px 0;
            opacity: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5em;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .contact-info p {
            font-size: 1.2em;
            color: #555555;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-methods {
            list-style: none;
        }

        .contact-methods li {
            padding: 25px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .contact-methods li:first-child {
            border-top: 1px solid #e0e0e0;
        }

        .contact-label {
            font-size: 0.9em;
            letter-spacing: 2px;
            color: #999999;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .contact-value {
            font-size: 1.2em;
            color: #1C1C1C;
        }

        .contact-value a {
            color: #1C1C1C;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-value a:hover {
            opacity: 0.6;
        }

        .contact-form {
            background: #f5f5f3;
            padding: 60px;
        }

        .contact-form h3 {
            font-size: 1.8em;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        label {
            display: block;
            color: #1C1C1C;
            margin-bottom: 12px;
            font-size: 0.9em;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        input, select, textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #d0d0d0;
            font-size: 1em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #FAFAF8;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #1C1C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 28, 28, 0.08);
        }

        select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231C1C1C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: #1C1C1C;
            color: #FAFAF8;
            border: none;
            font-size: 1em;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            border: 2px solid #1C1C1C;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(250, 250, 248, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover:before {
            width: 400px;
            height: 400px;
        }

        .submit-btn:hover {
            background: #FAFAF8;
            color: #1C1C1C;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.2);
        }

        .submit-btn:disabled {
            background: #cccccc;
            border-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn.loading {
            pointer-events: none;
        }

        .submit-btn.loading:after {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid transparent;
            border-top-color: #FAFAF8;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .field-error {
            color: #d32f2f;
            font-size: 0.85em;
            margin-top: 8px;
            display: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .field-error.show {
            display: block;
        }

        input.error, select.error, textarea.error {
            border-color: #d32f2f;
        }

        input.success, select.success, textarea.success {
            border-color: #388e3c;
        }

        .success-message {
            display: none;
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 20px 30px;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 1px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        
      

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }
        
        @media (max-width: 768px) {
            

            .contact-form {
                padding: 40px 25px;
            }

            .contact-info h2 {
                font-size: 2em;
            }
        }
    
           .auth-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        .auth-box {
            background: #FAFAF8;
            border: 1px solid #e0e0e0;
            padding: 60px;
            max-width: 500px;
            width: 100%;
        }

        .auth-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .auth-header h1 {
            font-size: 2.5em;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .auth-header p {
            color: #666666;
            font-size: 1.05em;
        }

        .toggle-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .toggle-group {
            display: flex;
            border: 2px solid #1C1C1C;
            border-radius: 0;
            overflow: hidden;
            width: 100%;
        }

        .toggle-btn {
            padding: 12px 30px;
            background: #FAFAF8;
            border: none;
            color: #1C1C1C;
            cursor: pointer;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.9em;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-right: 1px solid #e0e0e0;
            flex : 1;
        }

        .toggle-btn:last-child {
            border-right: none;
        }

        .toggle-btn.active {
            background: #1C1C1C;
            color: #FAFAF8;
        }

        .toggle-btn:hover:not(.active) {
            background: #f5f5f3;
        }

        .form-section_auth {
            display: none;
        }

        .form-section_auth.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group_auth {
            margin-bottom: 25px;
        }

        label {
            display: block;
            color: #1C1C1C;
            margin-bottom: 8px;
            font-size: 0.9em;
            letter-spacing: 0.5px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        input, select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #d0d0d0;
            font-size: 1em;
            transition: all 0.3s ease;
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #FAFAF8;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #1C1C1C;
            box-shadow: 0 0 0 3px rgba(28, 28, 28, 0.1);
        }

        input.error, select.error {
            border-color: #d32f2f;
        }

        .error-message {
            color: #d32f2f;
            font-size: 0.85em;
            margin-top: 5px;
            display: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .error-message.show {
            display: block;
        }

        .submit-btn_auth {
            width: 100%;
            padding: 16px;
            background: #1C1C1C;
            color: #FAFAF8;
            border: 2px solid #1C1C1C;
            font-size: 1em;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            margin-top: 10px;
        }

        .submit-btn_auth:hover {
            background: #FAFAF8;
            color: #1C1C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 28, 28, 0.15);
        }

        .submit-btn_auth:disabled {
            background: #cccccc;
            border-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }

        .divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .divider:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e0e0e0;
        }

        .divider span {
            background: #FAFAF8;
            padding: 0 15px;
            color: #999999;
            font-size: 0.9em;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .alt-action {
            text-align: center;
            margin-top: 30px;
            color: #666666;
            font-size: 0.95em;
        }

        .alt-action a {
            color: #1C1C1C;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .alt-action a:hover {
            opacity: 0.6;
        }

        .success-message {
            background: #1C1C1C;
            color: #FAFAF8;
            padding: 15px 20px;
            margin-bottom: 20px;
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .password-strength {
            margin-top: 8px;
            height: 4px;
            background: #e0e0e0;
            border-radius: 2px;
            overflow: hidden;
            display: none;
        }

        .password-strength.show {
            display: block;
        }

        .password-strength-bar {
            height: 100%;
            transition: all 0.3s ease;
            width: 0;
        }

        .password-strength-bar.weak {
            width: 33%;
            background: #d32f2f;
        }

        .password-strength-bar.medium {
            width: 66%;
            background: #ff9800;
        }

        .password-strength-bar.strong {
            width: 100%;
            background: #4caf50;
        }

        @media (max-width: 768px) {
            .auth-box {
                padding: 40px 30px;
            }

            .auth-header h1 {
                font-size: 2em;
            }

            .toggle-container {
                flex-direction: column;
                gap: 15px;
            }

            .toggle-btn {
                padding: 10px 20px;
                font-size: 0.85em;
                flex : 1;
            }
        }
