/* SpeedMark Website Styles - Consolidated */
/* Version: 2.0 | Date: November 23, 2025 */

/* ================================
   CSS VARIABLES
   ================================ */
:root {
    /* Colors */
    --gradient-primary: linear-gradient(135deg, #FBAE22 0%, #F97C17 100%);
    --gradient-hero: linear-gradient(to bottom, #F97C17 0%, #FBAE22 100%);
    --gradient-button: linear-gradient(135deg, #F97C17, #F97C17);
    --color-primary: #F97C17;
    --color-secondary: #FBAE22;
    --color-accent: #1e3c72;
    
    /* White opacity variations */
    --white-100: rgba(255, 255, 255, 1);
    --white-95: rgba(255, 255, 255, 0.95);
    --white-90: rgba(255, 255, 255, 0.9);
    --white-85: rgba(255, 255, 255, 0.85);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-03: rgba(255, 255, 255, 0.03);
    
    /* Black opacity variations */
    --black-100: #000000;
    --black-20: rgba(0, 0, 0, 0.2);
    --black-15: rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;
    
    /* Border radius */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 22px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px var(--white-40);
    --shadow-medium: 0 8px 30px var(--black-15);
    --shadow-strong: 0 10px 40px var(--white-50);
}

/* ================================
   BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    background: var(--gradient-primary);
}

.mobile-br {
    display: none;
}

.mobile-phones {
    display: none;
}

/* ================================
   SHARED UTILITIES
   ================================ */
.btn,
.notify-button {
    padding: var(--space-sm) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--gradient-button);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
    font-family: inherit;
    height: 54px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn:hover,
.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--white-50);
}

.btn.secondary {
    background: var(--white-05);
    border: 1px solid var(--white-20);
    color: var(--white-90);
    box-shadow: none;
}

.btn.secondary:hover {
    background: var(--white-10);
}

/* Shared tab styles */
.usecase-tab,
.situation-tab {
    padding: var(--space-sm) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-60);
    background: var(--white-05);
    border: 2px solid var(--white-10);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: inherit;
}

.usecase-tab:hover,
.situation-tab:hover {
    color: var(--white-90);
    background: var(--white-08);
}

.usecase-tab.active {
    color: #ffffff;
    background: rgba(0, 122, 255, 0.2);
    border-color: #FFFFFF;
}

.situation-tab {
    padding: 0.75rem var(--space-md);
    font-size: 0.95rem;
}

.situation-tab.active {
    color: #ffffff;
    background: rgba(249, 124, 23, 0.2);
    border-color: var(--color-primary);
}

/* Shared card styles */
.card,
.feature-card {
    background: var(--white-95);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    transition: var(--transition-base);
}

.card {
    background: var(--white-05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px var(--black-20);
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--space-md);
    align-items: start;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--white-100);
    box-shadow: var(--shadow-medium);
}

/* Shared content animations */
.usecase-content,
.situation-card {
    display: none;
    animation: fadeIn 0.4s ease;
}

.usecase-content.active,
.situation-card.active {
    display: block;
}

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

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-lg) var(--space-5xl);
    text-align: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-phone {
    position: absolute;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 1.00;
}

.hero-phone-left {
    width: 25vw;
    max-width: 400px;
    min-width: 280px;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-phone-left-shadow {
    position: absolute;
    width: 20vw;
    max-width: 320px;
    min-width: 224px;
    height: 2.5vw;
    max-height: 40px;
    min-height: 28px;
    left: 8%;
    top: 75%;
    background: var(--black-15);
    border-radius: 50%;
    filter: blur(25px);
    transform: translateX(12.5%);
}

.hero-phone-right {
    width: 18vw;
    max-width: 280px;
    min-width: 200px;
    right: 14%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-phone-right-shadow {
    position: absolute;
    width: 14.4vw;
    max-width: 224px;
    min-width: 160px;
    height: 2.5vw;
    max-height: 50px;
    min-height: 35px;
    right: 14%;
    top: 80%;
    background: var(--black-20);
    border-radius: 50%;
    filter: blur(25px);
    transform: translateX(-12.5%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: url('img/speedmark.png') center center/cover no-repeat;
    border-radius: var(--radius-2xl);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-strong);
}

.arrow-to-right-phone {
    position: absolute;
    width: 180px;
    right: -15%;
    top: 35%;
    opacity: 0.8;
}

.arrow-to-left-phones {
    position: absolute;
    width: 180px;
    left: -10%;
    top: 53%;
    opacity: 0.8;
}

.app-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: white;
    opacity: 0.3;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.tagline {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-95);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.problem-statement {
    font-size: 1.4rem;
    color: var(--white-90);
    margin-bottom: 0.1rem;
    line-height: 1.5;
    font-weight: 500;
}

.problem-statement-sub {
    font-size: 1.3rem;
    color: var(--white-85);
    margin-bottom: var(--space-2xl);
    line-height: 1.5;
}

/* ================================
   EMAIL CAPTURE
   ================================ */
.email-capture {
    max-width: 550px;
    margin: 0 auto var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    align-items: center;
}

.email-input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    font-size: 1.1rem;
    border: 2px solid var(--white-20);
    background: var(--white-10);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: var(--transition-base);
    height: 54px;
}

.email-input::placeholder {
    color: var(--white-50);
}

.email-input:focus {
    outline: none;
    border-color: #FFFFFF;
    background: var(--white-15);
}

.email-note {
    font-size: 0.95rem;
    color: var(--white-60);
}

/* ================================
   FEATURES SECTION
   ================================ */
.features-section {
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(to bottom, var(--color-secondary) 0%, transparent 20%);
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--white-70);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-icon {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent);
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    align-self: center;
    margin: 0;
}

.feature-text {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.6;
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
}

.feature-screenshots {
    margin-top: var(--space-2xl);
    text-align: center;
}

.feature-screenshots img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-section {
    padding: var(--space-5xl) var(--space-lg);
    background: transparent;
}

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

.how-content-wrapper {
    display: flex;
    gap: var(--space-3xl);
    align-items: flex-start;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.how-steps {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.step img {
    flex-shrink: 0;
}
.step-content {
    text-align: left;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-xs);
}
.step-text {
    color: var(--white-80);
    line-height: 1.5;
    font-size: 0.95rem;
}

.how-visual {
    flex: 1;
    max-width: 500px;
}

.how-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ================================
   USE CASE SECTION
   ================================ */
.usecase-section {
    padding: var(--space-4xl) var(--space-lg);
    background: transparent;
}

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

.usecase-tabs {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.usecase-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #ffffff;
    line-height: 1.3;
}

.usecase-text {
    font-size: 1.2rem;
    color: var(--white-85);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.proof-stat {
    font-size: 1.1rem;
    color: var(--white-80);
    font-weight: 600;
    margin: var(--space-lg) 0;
    padding: 1.2rem 0;
}

.proof-source {
    font-size: 12px;
    color: var(--white-80);
    opacity: 0.6;
    margin-top: 20px;
    margin-bottom: 15px;
}

.proof-section {
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
}

.proof-credibility {
    font-size: 1.2rem;
    color: var(--white-80);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.usecase-text-bold {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: var(--space-lg);
}

.usecase-dual-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.usecase-card {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    backdrop-filter: blur(10px);
}

.usecase-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #ffffff;
}

.usecase-card p {
    color: var(--white-80);
    line-height: 1.6;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-section {
    padding: var(--space-4xl) var(--space-lg);
    background: transparent;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--white-90);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--white-70);
    font-weight: 600;
}

/* ================================
   FINAL CTA
   ================================ */
.final-cta {
    padding: var(--space-5xl) var(--space-lg);
    text-align: center;
    background: transparent;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #ffffff;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--black-100);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
}

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

.footer-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white-70);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: var(--white-50);
    font-size: 0.9rem;
}


/* ================================
   CONTENT PAGES (privacy, terms, support, contact, etc.)
   ================================ */
body.content-page {
    display: block;
    padding: 0;
    min-height: 100vh;
}
.content-page .header {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--white-10);
}
.content-page .app-icon {
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(249, 124, 23, 0.3);
    border-radius: var(--radius-sm);
    margin: 0;
}
.content-page .header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.content-page .app-title {
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    opacity: 1;
}
.back-link {
    color: var(--white-60);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-base);
}
.back-link:hover {
    color: var(--white-90);
}
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}
.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-align: center;
}
.last-updated {
    font-size: 0.9rem;
    color: var(--white-60);
    margin-bottom: var(--space-2xl);
    text-align: center;
    font-style: italic;
}
.content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--space-xl) 0 var(--space-sm) 0;
    letter-spacing: -0.01em;
}
.content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-sm) 0;
    color: var(--white-90);
    letter-spacing: -0.005em;
}
.content p {
    margin-bottom: var(--space-md);
    color: var(--white-80);
    font-size: 1rem;
}
.content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}
.content li {
    margin-bottom: var(--space-xs);
    color: var(--white-80);
}
.content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.content a.btn {
    text-decoration: none;
}
.content a:hover {
    color: var(--white-80);
}
.highlight-box {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    backdrop-filter: blur(10px);
}
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}
.contact-section {
    background: var(--white-10);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    text-align: center;
}
.content-page .footer {
    border-top: 1px solid var(--white-10);
    padding: var(--space-lg);
    text-align: center;
    margin-top: var(--space-2xl);
    background: var(--black-100);
}


/* ================================
   SUCCESS PAGE
   ================================ */
body.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-lg);
    text-align: center;
}

body.success-page .container {
    max-width: 500px;
    width: 100%;
}

.success-page .checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34C759, #28A745);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(52, 199, 89, 0.4);
}

.success-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white-100);
}

.success-page p {
    font-size: 1.1rem;
    color: var(--white-80);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ================================
   GUARDIAN PAGE
   ================================ */
body.guardian-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: var(--space-lg);
}

.guardian-page .app-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

body.guardian-page .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.guardian-title {
    color: var(--white-100);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.guardian-page .card {
    background: var(--white-05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    width: 100%;
}

.guardian-page .card > .help-text:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-80);
    margin: 0 0 var(--space-sm);
}

.guardian-page .instructions {
    text-align: left;
    background: var(--white-03);
    border: 1px solid var(--white-08);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.guardian-page .instructions h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #ffffff;
}

.guardian-page .instructions p {
    color: var(--white-80);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.guardian-page .instructions ol {
    margin: 0 0 0 1.2rem;
    padding: 0;
    color: var(--white-80);
    font-size: 0.95rem;
}

.guardian-page .instructions li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.guardian-page .sub-text {
    font-size: 0.85rem;
    color: var(--white-50);
    font-style: italic;
}

.guardian-page .divider {
    text-align: center;
    margin: var(--space-md) 0;
    color: var(--white-40);
    font-size: 0.9rem;
}

.guardian-page .help-text:last-child {
    font-size: 0.9rem;
    color: var(--white-60);
    margin: var(--space-md) 0 0;
}

.guardian-page .help-text a {
    color: #FFFFFF;
    text-decoration: none;
}

body.guardian-page .footer {
    width: 100%;
    margin-top: auto;
    background: transparent;
    padding: var(--space-lg) 0 var(--space-sm);
}


/* ================================
   CONTACT FORM
   ================================ */
.intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-size: 1.1rem;
    color: var(--white-80);
}

.contact-form {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--white-90);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem var(--space-sm);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    background: var(--white-10);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--white-15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-50);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .required {
    color: #ff6b6b;
}

.contact-form .btn {
    display: inline-flex;
    margin-top: var(--space-sm);
}

.contact-form {
    text-align: left;
}

.contact-form > .btn {
    display: block;
    margin: var(--space-sm) auto 0;
    width: fit-content;
}

/* ================================
   VERIFY PAGE
   ================================ */
body.verify-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: var(--space-lg);
}

body.verify-page > .app-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

.verify-container {
    background: var(--white-80);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    width: 100%;
    padding: var(--space-2xl);
}

.verify-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.verify-title {
    color: var(--white-100);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.verify-header .subtitle {
    color: #4a5568;
    font-size: 0.95rem;
}
.verify-field {
    margin-bottom: var(--space-md);
}

.verify-field label {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.verify-field textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    resize: vertical;
    transition: var(--transition-base);
}

.verify-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.verify-btn {
    display: block;
    margin: var(--space-sm) auto 0;
}

.verify-result {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.verify-result.success {
    background: #c6f6d5;
    color: #22543d;
    border: 2px solid #9ae6b4;
}

.verify-result.error {
    background: #fed7d7;
    color: #742a2a;
    border: 2px solid #fc8181;
}

.verify-result .result-icon {
    font-size: 3rem;
    margin-bottom: var(--space-xs);
}

.verify-result .result-details {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    font-weight: normal;
    opacity: 0.8;
}

body.verify-page .footer {
    margin-top: auto;
    background: transparent;
    padding-top: var(--space-xl);
}


/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 768px) {
    /* Hero adjustments */
    .hero-section {
        padding: var(--space-md) var(--space-sm) var(--space-3xl);
    }
    
.hero-phone-left,
    .hero-phone-right {
        display: none;
    }
    
    .mobile-phones {
        display: block;
        position: relative;
        height: 450px;
        margin-top: var(--space-lg);
    }
    
    .mobile-phones img:first-child {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-70%, -50%);
        width: 75%;
        max-width: 350px;
        height: auto;
        z-index: 2;
    }
    
    .mobile-phones img:last-child {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-30%, -50%);
        width: 80%;
        max-width: 320px;
        height: auto;
        z-index: 1;
    }

    .mobile-phones::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 40%;
        transform: translateX(-20%);
        width: 50%;
        height: 20px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        filter: blur(10px);
        z-index: 0;
    }
    
    .hero-phone-left-shadow,
    .hero-phone-right-shadow,
    .arrow-to-right-phone,
    .arrow-to-left-phones {
        display: none;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .problem-statement {
        font-size: 1.2rem;
    }
    
    .problem-statement-sub {
        font-size: 1.1rem;
    }
    
    /* Email form stacking */
    .email-form {
        flex-direction: column;
        width: 100%;
    }
    
    .email-input,
    .notify-button {
        width: 100%;
    }
    
    /* Grid adjustments */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .testimonials-grid,
    .usecase-dual-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* How section */
    .how-content-wrapper {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .demo-video {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .demo-video video {
        height: auto;
        max-height: 400px;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .usecase-title {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .mobile-br {
        display: block;
    }
    
    /* Feature screenshots */
    .feature-screenshots img {
        border-radius: var(--radius-md);
    }
    
    /* Guardian page */
    body.guardian-page {
        padding: var(--space-sm);
    }
    
    .card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .card h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: var(--space-xs) 0;
    }
    
    .situation-tabs {
        flex-direction: column;
    }
    
    .situation-tab {
        width: 100%;
    }
    
    /* Legal pages */
    .content {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.3rem;
    }
}

/* ================================
   RESPONSIVE - MEDIUM SCREENS
   ================================ */
@media (max-width: 1400px) {
    .hero-phone-left {
        left: 5%;
    }
    .hero-phone-right {
        right: 8%;
    }
}

@media (max-width: 1200px) {
    .hero-phone-left {
        left: 2%;
    }
    .hero-phone-right {
        right: 4%;
    }
}

@media (max-width: 1100px) {
    .arrow-to-right-phone,
    .arrow-to-left-phones {
        display: none;
    }
}