@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f5f5;
    color: #000;
    line-height: 1.5;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06bc8c;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #06bc8c;
    border-radius: 50%;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

.header-icons svg {
    stroke: #666;
    transition: stroke 0.2s ease;
}

.header-icons a:hover svg {
    stroke: #00A651;
}

.section {
    padding: 0;
    max-width: 600px;
    margin: 2rem auto;
    margin-top: 0px;
    min-height: calc(100vh - 420px);
    background: #fff;
    border-radius: 45px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: calc(100% - 40px);
    overflow: hidden;
}

.section-content {
    padding: 2rem;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    height: 100%;
    width: 100%;
    position: relative;
}

.section-content.fade-out {
    opacity: 0;
}

.section-content.fade-in {
    opacity: 1;
}

@media (min-width: 768px) {
    .section {
        margin: 3rem auto;
        width: 100%;
        max-width: 900px;
    }

    .section-content {
        padding: 3rem;
    }
}

.progress-bar {
    height: 4px;
    background: #eee;
    margin: 1rem 0 3rem 0;
}

.nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.demo-container {
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    height: 100%;
}

@media (max-width: 480px) {
    .section {
        padding: 0;
        margin: 0;
        width: 100%;
        border-radius: 0;
    }

    .section-content {
        padding: 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    .progress-bar {
        margin: 0.5rem 0 1.5rem 0;
    }

    .nav-section {
        margin-bottom: 1rem;
    }

    .radio-option {
        padding: 1rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .demo-container {
        padding: 0rem;
    }

    .create-new-ai {
        border-top-left-radius: 0;
        padding: 1rem;
    }
}

.progress-fill {
    height: 100%;
    background: #06bc8c;
    width: 33%;
    transition: width 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.radio-option {
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-weight: 500;
    min-height: 60px;
    gap: 1rem;
}

.radio-option:hover {
    border-color: #ccc;
}

.radio-option.selected {
    border-color: #00A651;
    background: #F0FFF4;
}

.radio-option> :first-child {
    flex: 1;
    min-width: 0;
}

.radio-circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.selected .radio-circle {
    border-color: #00A651;
}

.selected .radio-circle:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
    background: #00A651;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border-top: 1px solid #eee;
    padding: 1rem 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    color: #333;
    font-size: 1.1rem;
    gap: 0.75rem;
    font-weight: 500;
}

.accordion-header::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.expanded::before {
    transform: rotate(180deg);
}

.accordion-header:hover::before {
    color: #06bc8c;
    stroke: #06bc8c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306bc8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.accordion-header:hover {
    color: #06bc8c;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #666;
    margin-top: 0;
}

.accordion-content.expanded {
    max-height: 500px;
    margin-top: 1rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background: black;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    width: 100%;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #ff3782, #30b41c, #1e86ff, #7e00ff, #ffd800, #ff3782);
    background-size: 400% 400%;
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
    filter: blur(4px);
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;

    border-radius: 0.75rem;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.button>* {
    position: relative;
    z-index: 1;
}

.button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:not(:disabled):hover::before {
    opacity: .3;
}

@keyframes gradientShift {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.button:disabled {
    background: #eee;
    color: #999;
    cursor: not-allowed;
}

.button.processing {
    background: #333;
    color: transparent;
    pointer-events: none;
}

.button.processing::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
    z-index: 3;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.button.next-button {
    margin-top: 1rem;
    background: #000;
}

.button.next-button:disabled {
    background: #eee;

}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #666;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    margin-left: -0.5rem;
}

.back-button:hover {
    background: #f5f5f5;
    color: #000;
    transform: translateX(-2px);
}

.back-button:active {
    transform: translateX(-1px);
    background: #eee;
}

.section-title {
    color: #666;
    font-size: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-top: 0.2rem;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox.checked {
    background: #00A651;
    border-color: #00A651;
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.legal-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.legal-text a {
    color: #333;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    padding-top: 1.5rem;
    padding-right: 2.5rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f2f2f2;
}

.form-control:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.2s ease;
    pointer-events: none;
    transform-origin: left top;
    z-index: 1;
}

.form-control:focus+.validation-icon+.form-label,
.form-control:not(:placeholder-shown)+.validation-icon+.form-label,
.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
    transform: translateY(-0.7rem) scale(0.8);
    color: #000;
    font-weight: 700;
}

.form-control::placeholder {
    color: transparent;
}

.form-control.is-valid {
    border-color: #00A651;
    padding-right: 2.5rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: 2.5rem;
}

.form-control.validating {
    padding-right: 2.5rem;
}

.validation-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control.validating+.validation-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='6'%3E%3C/line%3E%3Cline x1='12' y1='18' x2='12' y2='22'%3E%3C/line%3E%3Cline x1='4.93' y1='4.93' x2='7.76' y2='7.76'%3E%3C/line%3E%3Cline x1='16.24' y1='16.24' x2='19.07' y2='19.07'%3E%3C/line%3E%3Cline x1='2' y1='12' x2='6' y2='12'%3E%3C/line%3E%3Cline x1='18' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cline x1='4.93' y1='19.07' x2='7.76' y2='16.24'%3E%3C/line%3E%3Cline x1='16.24' y1='7.76' x2='19.07' y2='4.93'%3E%3C/line%3E%3C/svg%3E");
    animation: spin 1s linear infinite;
    background-size: 100%;
}

.form-control.is-valid+.validation-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A651' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: 100%;
}

.form-control.is-invalid+.validation-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10'%3e%3c/circle%3e%3cline x1='12' y1='8' x2='12' y2='12'%3e%3c/line%3e%3cline x1='12' y1='16' x2='12.01' y2='16'%3e%3c/line%3e%3c/svg%3e");
    background-size: 100%;
}

.form-control:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.helper-text {
    font-size: 0.875rem;
    margin-top: 0.375rem;
    color: #666;
}

.invalid-feedback {
    display: none;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.375rem;
}

.form-control.is-invalid+.invalid-feedback {
    display: block;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-progress-step {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #666;
}

.form-progress-step.completed {
    color: #00A651;
}

.form-progress-step.active {
    color: #000;
    font-weight: 500;
}

.form-progress-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.form-progress-step.completed .form-progress-indicator {
    background: #00A651;
    color: white;
}

.form-progress-step.active .form-progress-indicator {
    background: #000;
    color: white;
}

.save-indicator {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.save-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.processing-container {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid #eee;
    border-top: 4px solid #000;
    border-radius: 50%;
    margin: 2rem auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.processing-steps {
    margin-top: 2rem;
}

.step {
    padding: 0.5rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-text {
    flex: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.checkmark {
    color: #00A651;
    font-weight: bold;
    margin-left: 1rem;
    opacity: 0;
    transform: scale(0);
    animation: checkmarkAppear 0.5s ease forwards;
}

.step:nth-child(1) .step-text {
    animation-delay: 0s;
}

.step:nth-child(1) .checkmark {
    animation-delay: 2s;
}

.step:nth-child(2) .step-text {
    animation-delay: 3s;
}

.step:nth-child(2) .checkmark {
    animation-delay: 5s;
}

.step:nth-child(3) .step-text {
    animation-delay: 6s;
}

.step:nth-child(3) .checkmark {
    animation-delay: 8s;
}

.step:nth-child(4) .step-text {
    animation-delay: 9s;
}

.step:nth-child(4) .checkmark {
    animation-delay: 11s;
}

.step:nth-child(5) .step-text {
    animation-delay: 12s;
}

.step:nth-child(5) .phone-icon {
    opacity: 0;
    animation: checkmarkAppear 0.5s ease forwards, phoneRing 1s ease infinite;
    animation-delay: 12s, 12.5s;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 1rem;
    opacity: 0;
}

.phone-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00A651;
    stroke-width: 2;
    fill: none;
    min-width: 20px;
    min-height: 20px;
}

.phone-number {
    color: #000;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkmarkAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes phoneRing {
    0% {
        transform: rotate(-15deg) scale(1);
    }

    25% {
        transform: rotate(15deg) scale(1.1);
    }

    50% {
        transform: rotate(-15deg) scale(1);
    }

    75% {
        transform: rotate(15deg) scale(1.1);
    }

    100% {
        transform: rotate(-15deg) scale(1);
    }
}

.success-container {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #00A651;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 2rem auto;
    min-width: 48px;
    min-height: 48px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .button-group {
        margin-bottom: 45px;
    }
}

.button.primary {
    background: #00A651;
}

.button.secondary {
    background: #ffc32c;
    color: #000;
    border: none;
}

.button.tertiary {
    background: transparent;
    color: #666;
    border: 2px solid #000;
}

.button:not(:disabled):hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.button.primary:not(:disabled):hover {
    background: #008c44;
}

.button.secondary:not(:disabled):hover {
    background: #ff8533;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.button.tertiary:not(:disabled):hover {
    background: #f8f8f8;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.button.primary .button-icon {
    animation: phoneRing 1s ease infinite;
    transform-origin: center;
    display: inline-block;
}

.demo-phone-number {
    font-weight: 600;
    color: inherit;
    display: inline-block;
    margin: 0 4px;
}

.button.primary .demo-phone-number {
    color: white;
}

.different-number-btn {
    margin-top: 1rem;
}

/* Phone Number Modal Styles */
.phone-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.phone-modal.show {
    display: flex;
}

.phone-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.phone-modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-buttons .button {
    margin: 0;
    flex: 1;
}

.modal-buttons .button.processing {
    background: #333;
    color: transparent;
    pointer-events: none;
    position: relative;
}

.modal-buttons .button.processing::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
}

.phone-modal .error-message {
    margin: 0 0 1rem 0;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
}

.success-message .success-icon {
    width: 48px;
    height: 48px;
    background: #00A651;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    animation: scaleIn 0.3s ease;
}

.success-message p {
    color: #00A651;
    font-weight: 500;
    margin: 0;
    animation: fadeIn 0.3s ease;
}

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

    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.feature>div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.feature-icon {
    color: #00A651;
    min-width: 20px;
    min-height: 20px;
}

.celebration-icon {
    width: 120px;
    height: 120px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    animation: pulse 2s infinite;
}

.button-icon {
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD700;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}

@keyframes confetti-explosion {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--r));
        opacity: 0;
    }
}

/* Share Section Styles */
.share-section {
    margin: 1rem auto;
    padding: 0.5rem;
    text-align: center;
    max-width: 500px;
    background: #ebfef4;
    border-radius: 8px;
    border-color: #b5edbb;
    border-width: 1px;
    border-style: solid;
}

.share-text {
    display: inline-block;
    color: #111;
    font-size: 0.9rem;
    margin: 0;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-weight: 600;
}

.share-buttons {
    display: inline-flex;
    gap: 0.5rem;
    vertical-align: middle;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #78f941;
    border-radius: 50%;
    background: white;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.share-button:hover {
    border-color: #00A651;
    color: #00A651;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #f8fff8;
}

.share-button:active {
    transform: translateY(0);
}

.share-button svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    transition: all 0.2s ease;
}

.share-button:hover svg {
    stroke: #00A651;
    transform: scale(1.1);
}

.share-button.copy-link {
    background: #f5f5f5;
}

.share-button.copy-link.copied {
    background: #00A651;
    color: white;
    border-color: #00A651;
}

.share-button.copy-link.copied svg {
    stroke: white;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-button.copy-link.copied .copy-notification {
    opacity: 1;
    visibility: visible;
    animation: showNotification 2s ease forwards;
}

@keyframes showNotification {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100%);
    }

    15% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
    }
}

@media (max-width: 480px) {
    .share-section {
        margin: 1rem 0;
    }

    .share-text {
        display: block;
        margin-bottom: 0.5rem;
    }

    .share-buttons {
        display: grid;
        grid-template-columns: repeat(4, 36px);
        justify-content: center;
        gap: 1rem;
    }
}

.checklist {
    margin: 1.5rem auto;
    max-width: 500px;
    text-align: left;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.checklist-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #555;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

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

.error-message {
    background-color: #fff2f2;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add min dimensions for all SVG icons */
.button-icon svg,
.feature-icon,
.header-icons svg,
.phone-icon svg,
.share-button svg {
    min-width: 20px;
    min-height: 20px;
}

/* Larger icons need larger minimums */
.celebration-icon svg {
    min-width: 64px;
    min-height: 64px;
}

.success-icon {
    min-width: 48px;
    min-height: 48px;
}

/* Ensure the radio option text doesn't get squeezed */
.radio-option {
    gap: 1rem;
    padding-right: 1rem;
}

.radio-option> :first-child {
    flex: 1;
    min-width: 24px;
    margin-right: 0.5rem;
}

/* Add responsive adjustments for mobile */
@media (max-width: 480px) {
    .radio-option {
        padding: 1rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
}

.create-new-ai {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #fff;
    border: none;
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 12px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.create-new-ai:hover {
    background: #f8f8f8;
    color: #00A651;
}

.create-new-ai svg {
    stroke: currentColor;
    min-width: 20px;
    min-height: 20px;
}

@media (max-width: 480px) {
    .create-new-ai {
        border-top-left-radius: 0;
        padding: 1rem;
    }
}

.agent-details {
    max-width: 500px;
    text-align: center;
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-info h1 {
    margin-bottom: 0;
}

.agent-info h3 {
    margin: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
    color: #333;
}

.agent-info p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.agent-info span {
    font-weight: 600;
    color: #000;
}