/* MyFuture Landing Page Styles - Grey Theme */

/* CSS Variables */
:root {
    /* Colors - Grey Theme Only */
    --bg-primary: #787878;
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --bg-tertiary: rgba(255, 255, 255, 0.08);
    --bg-accent: rgba(0, 217, 255, 0.1);
    --bg-card: rgba(255, 255, 255, 0.05);

    --brand-primary: #00D9FF;
    --brand-secondary: #00A3CC;
    --brand-light: rgba(0, 217, 255, 0.2);

    --accent-cyan: #00D9FF;
    --accent-cyan-dark: #00A3CC;
    --accent-glow: rgba(0, 217, 255, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: rgba(255, 255, 255, 0.6);

    --grey-dark: #5a5a5a;
    --grey-border: rgba(0, 217, 255, 0.3);
    --grey-border-hover: #00D9FF;

    /* Spacing */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 10px 30px rgba(0, 217, 255, 0.4);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-border);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 217, 255, 0.3));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--brand-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-border);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    padding: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--bg-tertiary);
    color: var(--brand-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    min-height: 44px; /* Better touch target for mobile */
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--grey-dark);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid var(--grey-border);
}

.btn-secondary:hover {
    border-color: var(--grey-border-hover);
    background: var(--bg-tertiary);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--grey-dark);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary-white {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--grey-dark);
    box-shadow: var(--shadow-xl);
    font-weight: 700;
}

.btn-primary-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 30px -5px rgba(0, 217, 255, 0.5);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--grey-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    max-width: 500px;
    opacity: 0.15;
    z-index: 0;
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.6))
            drop-shadow(0 0 80px rgba(0, 217, 255, 0.4))
            drop-shadow(0 0 120px rgba(0, 217, 255, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.6))
                drop-shadow(0 0 80px rgba(0, 217, 255, 0.4))
                drop-shadow(0 0 120px rgba(0, 217, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 50px rgba(0, 217, 255, 0.7))
                drop-shadow(0 0 100px rgba(0, 217, 255, 0.5))
                drop-shadow(0 0 150px rgba(0, 217, 255, 0.4));
    }
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--grey-border);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    z-index: 2;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.8);
    border-color: var(--brand-primary);
}

.floating-card i {
    font-size: 2rem;
    color: var(--brand-primary);
    filter: drop-shadow(0 2px 10px rgba(0, 217, 255, 0.5));
}

.floating-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 20%;
    right: 15%;
    animation: float-2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation: float-3 8s ease-in-out infinite;
}

.card-4 {
    bottom: 15%;
    right: 10%;
    animation: float-4 9s ease-in-out infinite;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.2);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features {
    background: var(--grey-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--grey-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
    background: var(--bg-tertiary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--grey-dark);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--grey-dark);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    margin-bottom: 4rem;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Roles Section */
.roles {
    background: var(--grey-dark);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.role-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 2px solid var(--grey-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-tertiary);
}

.role-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    box-shadow: var(--shadow-glow);
}

.role-icon i {
    font-size: 2rem;
    color: var(--grey-dark);
}

.role-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.role-subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.role-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.role-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.role-features i {
    color: var(--brand-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0, 217, 255, 0.3));
}

/* Benefits */
.benefits {
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--grey-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--brand-primary);
    filter: drop-shadow(0 2px 10px rgba(0, 217, 255, 0.5));
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Book a Demo Section */
.book-demo {
    background: var(--grey-dark);
}

.demo-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    border: 2px solid var(--grey-border);
    box-shadow: var(--shadow-xl);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--grey-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

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

.demo-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-glow);
    text-align: center;
    max-width: 450px;
    margin: 0 1rem;
    animation: slideUp 0.4s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--grey-dark);
}

.modal-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.modal-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Footer */
.footer {
    background: var(--grey-dark);
    border-top: 1px solid var(--grey-border);
    padding: 3rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 217, 255, 0.3));
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-border);
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--grey-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-primary);
    color: var(--grey-dark);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(-3deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-logo {
        max-width: 400px;
        opacity: 0.12;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .demo-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-container {
        gap: 2rem;
    }

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

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        height: 250px;
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-logo {
        max-width: 250px;
        opacity: 0.12;
    }

    .floating-card {
        padding: 0.75rem 1rem;
    }

    .floating-card i {
        font-size: 1.25rem;
    }

    .floating-card span {
        font-size: 0.7rem;
    }

    /* Adjust card positions for mobile */
    .card-1 {
        top: 8%;
        left: 2%;
    }

    .card-2 {
        top: 8%;
        right: 2%;
    }

    .card-3 {
        bottom: 8%;
        left: 2%;
    }

    .card-4 {
        bottom: 8%;
        right: 2%;
    }

    .section-container {
        padding: 2.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .features-grid,
    .roles-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .role-card {
        padding: 1.5rem;
    }

    .feature-icon,
    .role-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i,
    .role-icon i {
        font-size: 1.5rem;
    }

    .feature-title,
    .role-title {
        font-size: 1.125rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .step-title {
        font-size: 1.125rem;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
        margin: 0;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i {
        font-size: 1.75rem;
    }

    .benefit-title {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .demo-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 0.75rem;
    }

    .brand-name {
        font-size: 1.125rem;
    }

    .logo {
        height: 30px;
    }

    .hero {
        padding: 4.5rem 0.75rem 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-visual {
        height: 200px;
    }

    .hero-logo {
        max-width: 180px;
        opacity: 0.08;
    }

    .floating-card {
        padding: 0.5rem 0.75rem;
    }

    .floating-card i {
        font-size: 1rem;
    }

    .floating-card span {
        font-size: 0.625rem;
    }

    .card-1 {
        top: 5%;
        left: 0%;
    }

    .card-2 {
        top: 5%;
        right: 0%;
    }

    .card-3 {
        bottom: 5%;
        left: 0%;
    }

    .card-4 {
        bottom: 5%;
        right: 0%;
    }

    .section-container {
        padding: 2rem 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .feature-card,
    .role-card {
        padding: 1.25rem;
    }

    .feature-icon,
    .role-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon i,
    .role-icon i {
        font-size: 1.25rem;
    }

    .feature-title,
    .role-title {
        font-size: 1rem;
    }

    .feature-description,
    .role-subtitle,
    .role-features li,
    .benefit-description {
        font-size: 0.875rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-outline {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .footer-logo {
        height: 28px;
    }

    .footer-brand {
        font-size: 1.125rem;
    }

    .footer-title {
        font-size: 0.9375rem;
    }

    .footer-links a,
    .footer-description {
        font-size: 0.875rem;
    }

    .demo-form-container {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
    }

    .modal-icon i {
        font-size: 2rem;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .footer-social {
        display: none;
    }
}
