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

:root {
    --primary-blue: #2563eb;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-gray-light: #f9fafb;
    --border-gray: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    text-align: left;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

.hero-brand-text {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 36px;
    line-height: 1.75;
    letter-spacing: 0.005em;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features ul {
    list-style: none;
}

.hero-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
}

.hero-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
}

.dummy-image {
    width: 100%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    border: 2px dashed var(--primary-blue-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

/* Section Styles */
section {
    padding: 80px 20px;
}

section:nth-child(even) {
    background-color: var(--bg-gray-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-image-container {
    text-align: center;
    margin-bottom: 50px;
}

.about-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content ul {
    list-style: none;
    margin-bottom: 40px;
}

.about-content li {
    padding: 15px 0;
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
}

.about-content li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.use-case-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
}

.use-case-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Reasons Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.reason-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Features Section */
.features-image-container {
    text-align: center;
    margin-bottom: 50px;
}

.features-image {
    max-width: 900px;
    width: 100%;
    height: 450px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    border-top: 3px solid var(--primary-blue);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Admin Features Section */
.admin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-feature-category {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
}

.admin-feature-category h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.admin-feature-category ul {
    list-style: none;
}

.admin-feature-category li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-gray);
}

.admin-feature-category li:last-child {
    border-bottom: none;
}

/* Target Section */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.target-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.target-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.target-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-icon {
    font-size: 32px;
    color: var(--primary-blue);
}

.security-item h4 {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--primary-blue) 0%,
        var(--primary-blue-light) 50%,
        var(--primary-blue) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--primary-blue);
}

.process-steps {
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
    width: 45%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.process-step:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.process-step:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
}

.process-step:nth-child(odd)::before {
    right: -33px;
}

.process-step:nth-child(even)::before {
    left: -33px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.process-step:nth-child(odd)::after {
    right: -41px;
}

.process-step:nth-child(even)::after {
    left: -41px;
}

.process-step:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.process-step:hover::after {
    background: var(--primary-blue);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-title {
    flex: 1;
}

.step-title h4 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.step-duration {
    display: inline-block;
    font-size: 12px;
    color: white;
    background: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pricing-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-item h4 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-note {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 25px 30px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0 15px 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--bg-gray-light);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #d1d5db;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue-light);
}

.footer-copy {
    border-top: 1px solid #374151;
    padding-top: 20px;
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 20px 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-image img {
        max-width: 400px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
        letter-spacing: -0.015em;
    }

    .hero h1 br {
        display: none;
    }

    .hero-brand-text {
        font-size: 28px;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.7;
        letter-spacing: 0.005em;
    }

    .hero-features {
        margin-bottom: 28px;
    }

    .hero-features ul {
        line-height: 1.4;
    }

    .hero-features li {
        font-size: 14px;
        padding: 8px 0;
    }

    .about-image,
    .features-image {
        max-width: 100%;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 36px;
    }

    .about-content ul,
    .faq-answer ul {
        line-height: 1.6;
    }

    .about-content li {
        padding: 12px 0;
    }

    .use-cases {
        margin-top: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
    }

    .reasons-grid,
    .features-grid,
    .security-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-card {
        padding: 24px;
    }

    .reason-card h3 {
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .reason-card p {
        line-height: 1.6;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h4 {
        line-height: 1.4;
    }

    .feature-item p {
        line-height: 1.5;
        margin-top: 8px;
    }

    .use-case-card {
        padding: 20px;
    }

    .use-case-card h4 {
        line-height: 1.4;
    }

    .use-case-card p {
        line-height: 1.5;
    }

    .target-card {
        padding: 24px;
    }

    .target-card h3 {
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .target-card p {
        line-height: 1.6;
    }

    .admin-feature-category {
        padding: 24px;
    }

    .admin-feature-category h3 {
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .admin-feature-category li {
        padding: 8px 0;
        line-height: 1.5;
    }

    .timeline-line {
        left: 30px;
    }

    .process-step {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        margin-bottom: 50px;
    }

    .process-step::before {
        left: -50px !important;
        right: auto !important;
    }

    .process-step::after {
        left: -58px !important;
        right: auto !important;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-title h4 {
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .step-description {
        line-height: 1.6;
    }

    .faq-question {
        padding: 20px 24px;
        line-height: 1.4;
    }

    .faq-answer {
        line-height: 1.6;
    }

    .faq-answer p {
        margin: 0 0 12px 0;
        line-height: 1.7;
    }

    .pricing-item h4 {
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .pricing-item p {
        line-height: 1.5;
    }

    .security-item h4 {
        line-height: 1.4;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .cta-section h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .cta-section p {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    section {
        padding: 45px 0;
    }

    .hero {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 18px;
    }

    .hero-brand-text {
        font-size: 22px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-features {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.35;
    }

    .section-subtitle {
        margin-bottom: 32px;
    }

    .timeline-line {
        left: 20px;
    }

    .process-step {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 20px;
        margin-bottom: 40px;
    }

    .process-step::before {
        left: -40px !important;
        width: 20px;
    }

    .process-step::after {
        left: -48px !important;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-right: 15px;
    }

    .step-title h4 {
        font-size: 16px;
    }

    .step-duration {
        font-size: 11px;
        padding: 3px 10px;
    }

    .step-description {
        font-size: 14px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
    min-height: calc(100vh - 200px);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#hubspot-form {
    width: 100%;
}

#hubspot-form iframe,
#hubspot-form form {
    width: 100% !important;
    max-width: 100% !important;
}

/* Contact Section Responsive */
@media (max-width: 640px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-form-container {
        padding: 24px 16px;
        border-radius: 8px;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: calc(100vh - 200px);
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin: 0 auto 40px;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-icon svg {
    width: 60px;
    height: 60px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 50px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.info-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Thank You Section Responsive */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 16px;
    }

    .thank-you-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }

    .thank-you-icon svg {
        width: 50px;
        height: 50px;
    }

    .thank-you-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .info-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .thank-you-section {
        padding: 40px 16px;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .thank-you-icon svg {
        width: 40px;
        height: 40px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 14px;
    }
}

/* Phone Link - Disable on PC */
@media (hover: hover) and (pointer: fine) {
    .phone-link {
        pointer-events: none;
        cursor: default;
    }
}

/* Stats Section Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 20px !important;
    }
    
    .stats-grid {
        gap: 20px !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 30px 16px !important;
    }
    
    .stats-grid {
        gap: 16px !important;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
}
