.slack-messages {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(30, 41, 59, 0.95) 100%);
    overflow-y: visible;
    height: auto;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.message-author {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.message-time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.message-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-line;
}

.message-text p {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.message-text p:first-child {
    margin-top: 0;
}

.task-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.task-list li {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
}

.task-list li strong {
    color: var(--primary);
    font-weight: 600;
}

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

.ethan-photo-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    background: linear-gradient(135deg, rgba(74, 27, 157, 0.15) 0%, rgba(30, 41, 59, 0.25) 100%);
}

.ethan-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.02);
    transition: transform 0.5s ease;
    mix-blend-mode: luminosity;
}

.ethan-photo-container:hover .ethan-photo {
    mix-blend-mode: normal;
}

.slack-screenshot {
    position: absolute;
    width: 320px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--background);
    transform: rotate(5deg);
    transition: transform 0.5s ease;
    bottom: -20px;
    right: -20px;
    z-index: 2;
}

#aeo .product-detail-image:hover .ethan-photo {
    transform: scale(1.05);
}

#aeo .product-detail-image:hover .slack-screenshot {
    transform: rotate(0deg) scale(1.05);
}

#amionai .product-detail-image {
    width: 100%;
    position: relative;
    padding-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 4rem;
    border-radius: 0;
}

.browser-container {
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

/* Specific styles for the agency page browser container */
.product-detail-grid .browser-container {
    height: auto;
    min-height: 400px;
}

.product-detail-grid .browser-content {
    padding: 1.5rem;
    height: auto;
    min-height: 300px;
}

/* Traffic growth card styles */
.traffic-growth-card {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.growth-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-group {
    text-align: center;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.stat-value.highlight {
    color: #10B981;
}

.stat-description {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stat-arrow {
    color: var(--text-muted);
    font-size: 2rem;
}

.growth-chart {
    position: relative;
    padding-top: 1rem;
}

.chart-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, #10B981 100%);
    margin-bottom: 1rem;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.browser-header {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
}

.browser-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-title {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.browser-title-logo {
    width: auto;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.browser-title-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.browser-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.3);
}

.browser-tab {
    padding: 0.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.3);
    font-weight: 500;
}

.browser-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.browser-tab.active {
    color: var(--text);
    background: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.browser-content {
    background: rgba(15, 23, 42, 0.3);
    height: 100%;  /* Take remaining height */
    position: relative;
    flex: 1;
    padding: 0.75rem;
    overflow-y: auto;  /* Add scroll if content overflows */
}

.visibility-score-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.visibility-content {
    text-align: center;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding-top: 2rem;  /* Add top padding */
}

.visibility-content h3 {
    margin-top: 0.5rem;
}

.product-logo-container {
    margin-top: 1rem;
}

#amionai .floating-product-logo {
    display: none;
}

.floating-product-logo {
    width: 200px;
    height: auto;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    z-index: 2;
}

.floating-product-logo:hover {
    transform: translateX(-50%) scale(1.05);
}

#amionai .screenshot-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: 1;
}

.channel-members {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.member-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid var(--card-bg);
    margin-left: -8px;
}

.member-avatar:first-child {
    margin-left: 0;
}

.member-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.message-reactions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.reaction {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.reaction:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.reaction .emoji {
    font-size: 0.9rem;
}

.reaction .count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.message-replies {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    padding: 0.25rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.message-replies:hover {
    background: rgba(255, 255, 255, 0.05);
}

.reply-avatars {
    display: flex;
    align-items: center;
}

.reply-avatar {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--card-bg);
    margin-left: -8px;
}

.reply-avatar:first-child {
    margin-left: 0;
}

.reply-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.bullet {
    color: var(--text-muted);
    opacity: 0.5;
}

.replies-count {
    color: var(--text-muted);
}

.replies-thread {
    color: var(--text-muted);
}

.message-replies:hover .replies-thread {
    color: var(--text);
}

.platform-support {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.platform-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.platform-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.score-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.score-circle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 10;
}

.score-circle-progress {
    fill: none;
    stroke: #F59E0B;  /* Orange for OK score */
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 565.48;  /* Circumference of circle */
    stroke-dashoffset: 180.95;  /* Adjusted for 68% progress (Great score) */
    transition: stroke-dashoffset 1s ease-in-out;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.score-label {
    display: block;
    font-size: 1.25rem;
    color: #F59E0B;  /* Orange for OK score */
    font-weight: 500;
}

.score-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.na { background-color: var(--text-muted); }
.legend-dot.poor { background-color: #EF4444; }
.legend-dot.ok { background-color: #F59E0B; }
.legend-dot.great { background-color: #3B82F6; }
.legend-dot.excellent { background-color: #10B981; }

.legend-label {
    color: var(--text);
    font-size: 0.9rem;
}

.legend-range {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.competitor-ranking {
    padding: 1rem;
}

.competitor-ranking h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.competitor-ranking p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.competitor-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.competitor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.competitor-bar {
    flex: 1;
    height: 2.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.competitor-bar-fill {
    height: 100%;
    background: #3B82F6;
    border-radius: 6px;
    transition: width .5s ease
}

.featured .competitor-bar-fill {
    background: #F59E0B;  /* Orange color */
}

.competitor-name {
    min-width: 120px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.competitor-score {
    min-width: 48px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.competitor-star {
    color: #3B82F6;
    margin-right: 0.5rem;
}

.prompts-content {
    padding: 1rem;
}

.prompts-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.prompts-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.queries-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.query-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 8px;
    gap: 1rem;
    border: 1px solid var(--border);
}

.query-status {
    display: flex;
    align-items: center;
}

.status-icon {
    width: 20px;
    height: 20px;
}

.query-item.found .status-icon {
    color: #22c55e;
}

.query-item.not-found .status-icon {
    color: #ef4444;
}

.query-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

.query-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.query-item.found .query-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.query-item.not-found .query-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.sources-content {
    padding: 1rem;
    padding-bottom: 0;  /* Remove bottom padding */
}

.sources-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
}

.sources-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.sources-table thead {
    display: none;
}

.sources-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.sources-table td {
    background: rgba(30, 41, 59, 0.4);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
}

.sources-table tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.sources-table tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: right;
}

.domain-type {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.domain-type.business {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.domain-type.social {
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
}

.domain-type.other {
    background: rgba(234, 179, 8, 0.2);
    color: #FACC15;
}

.domain-link {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-link:hover {
    color: #60A5FA;
}

.external-link-icon {
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal.active ~ .hero,
.modal.active ~ .products,
.modal.active ~ .product-detail,
.modal.active ~ footer {
    filter: blur(4px);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.modal-content {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(74, 27, 157, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.modal-header h2 {
    font-size: 2.25rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--text);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 
        0 0 20px rgba(74, 27, 157, 0.2),
        0 0 40px rgba(74, 27, 157, 0.1);
    border-color: var(--primary);
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.form-group input {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 
        0 0 0 3px rgba(74, 27, 157, 0.15),
        0 0 20px rgba(74, 27, 157, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-group input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.6);
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(74, 27, 157, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-200%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 16px rgba(74, 27, 157, 0.3),
        0 0 30px rgba(74, 27, 157, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.button-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

.success-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 1rem;
    }
}

/* Confirmation Page Styles */
.confirmation-section {
    padding: 5rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.confirmation-content {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.confirmation-icon {
    font-size: 3.5rem;
    color: #10B981;
    margin-bottom: 1.5rem;
    display: block;
}

.confirmation-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
}

.confirmation-message {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirmation-details {
    text-align: left;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation-details h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.confirmation-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confirmation-details li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.confirmation-details li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--primary);
}

.confirmation-details strong {
    color: var(--text);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.25rem;
}

.home-link-container {
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .confirmation-section {
        padding: 3rem 0;
    }
    
    .confirmation-content {
        padding: 2rem;
    }
    
    .confirmation-section h1 {
        font-size: 2rem;
    }
    
    .confirmation-message {
        font-size: 1.1rem;
    }
    
    .confirmation-details h2 {
        font-size: 1.25rem;
    }
    
    .confirmation-details p,
    .confirmation-details li {
        font-size: 1rem;
    }
} 

/* Why This Matters Section */
.highlight-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(15, 23, 42, 0.9) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, var(--primary-dark) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, var(--primary-dark) 0%, transparent 40%);
    opacity: 0.15;
    pointer-events: none;
}

.why-matters-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.why-matters-content h2 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-matters-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.why-matters-content .cta-container {
    margin-top: 3rem;
}

.highlight-section .primary-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border: none;
}

.highlight-section .primary-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.highlight-section .primary-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.highlight-section .primary-button:hover::after {
    transform: scale(1);
}

@media (max-width: 768px) {
    .why-matters-content h2 {
        font-size: 2.5rem;
    }
    
    .why-matters-content p {
        font-size: 1.1rem;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
} 

/* Hero Browser Container Specific Styles */
.hero-browser-container {
    padding-top: 100% !important; /* Force 1:1 aspect ratio */
    position: relative;
}

.hero-browser-container .browser-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-browser-container .browser-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Ensure the traffic growth card fits properly in the 1:1 container */
.hero-browser-container .traffic-growth-card {
    height: auto;
    width: 100%;
    max-height: calc(100% - 3rem);
    overflow: auto;
} 