/* CSS Custom Properties */
:root {
    --primary-turquoise: #00ACC1;
    --highlight-coral: #FF6B6B;
    --background-off-white: #F5F7FA;
    --text-navy: #1A2B50;
    --secondary-mint: #4ECDC4;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(26, 43, 80, 0.1);
    --shadow-md: 0 4px 12px rgba(26, 43, 80, 0.15);
    --shadow-lg: 0 8px 32px rgba(26, 43, 80, 0.2);
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-navy);
    background-color: var(--background-off-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-turquoise);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--highlight-coral);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav {
    padding: 1rem 0;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-turquoise);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-navy);
    transition: var(--transition-fast);
}

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

.nav-link[href="#coming-soon"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link[href="#coming-soon"]:hover {
    color: var(--text-navy);
}

.nav-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Language Switcher */
.language-switch {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-navy);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background-color: var(--gray-100);
}

.lang-btn.active {
    background-color: var(--primary-turquoise);
    color: var(--white);
}

.lang-separator {
    color: var(--gray-400);
    margin: 0 0.25rem;
    font-weight: 300;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    background: var(--background-off-white);
    position: relative;
    overflow: hidden;
}

/* Full-width gradient background for the hero subtitle */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 172, 193, 0.08) 0%,
        rgba(255, 107, 107, 0.12) 25%,
        rgba(78, 205, 196, 0.10) 50%,
        rgba(255, 107, 107, 0.08) 75%,
        rgba(0, 172, 193, 0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    text-align: left;
}

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-status {
    margin-bottom: 2.5rem;
}

.status-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-mint), var(--primary-turquoise));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.status-badge:hover::before {
    left: 100%;
}

.status-icon {
    font-size: 1.2rem;
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-primary {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.status-secondary {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-turquoise), var(--secondary-mint));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.card-content {
    padding: 2rem;
}

.dashboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.dashboard-item:last-child {
    margin-bottom: 0;
}

.dashboard-item:hover {
    background: var(--gray-200);
    transform: translateX(4px);
}

.item-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.item-text {
    font-weight: 600;
    color: var(--text-navy);
    font-size: 0.95rem;
    flex: 1;
}

.goal-title {
    font-weight: 600;
    color: var(--text-navy);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.goal-subtitle {
    font-weight: 400;
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-turquoise);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-turquoise) 0%, var(--primary-turquoise) 100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.cta-primary:hover::before {
    background: linear-gradient(135deg, var(--highlight-coral) 0%, var(--highlight-coral) 100%);
    transform: scale(1.05);
}

.cta-primary:hover::after {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.3), 0 5px 10px rgba(255, 107, 107, 0.2);
    color: var(--white);
}

.cta-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary:hover span {
    transform: translateY(-1px);
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.cta-secondary {
    background: transparent;
    color: var(--primary-turquoise);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-turquoise);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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


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

.section-header .section-title {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--secondary-mint));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

/* Solution Diagram */
.diagram-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.solution-diagram {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.diagram-caption {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-navy);
    font-weight: 500;
    line-height: 1.5;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 172, 193, 0.1);
    border-radius: var(--border-radius);
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    /* Filter to convert black SVG to #00ACC1 (primary turquoise) */
    filter: brightness(0) saturate(100%) invert(54%) sepia(89%) saturate(1680%) hue-rotate(152deg) brightness(94%) contrast(101%);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Technology Approach Subsection */
.tech-approach-container {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.subsection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--secondary-mint));
    border-radius: 2px;
}

.subsection-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-list {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.tech-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-navy);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.tech-item::before {
    content: '•';
    color: var(--primary-turquoise);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* User Experience Section */
.user-experience {
    padding: 6rem 0 4rem;
    background: var(--background-off-white);
    margin-top: 4rem;
}

.user-experience .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.user-experience .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-navy);
}

.user-experience .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.7;
}

.user-experience-image {
    text-align: center;
    margin-top: 1.5rem;
}

.user-experience-image .ux-screenshot {
    max-width: 60%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--background-off-white) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--secondary-mint));
    border-radius: 2px;
}

.about-description {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-description:first-of-type {
    font-size: 1.25rem;
    color: var(--text-navy);
    font-weight: 500;
}

.about-description:last-of-type {
    margin-bottom: 3rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.team-title {
    font-size: 1rem;
    color: var(--primary-turquoise);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Coming Soon Section */
.coming-soon {
    padding: 6rem 0;
    background: var(--white);
}

/* Email Link Styling */
.contact-email {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-mint), var(--primary-turquoise));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.email-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-content .section-title {
    margin-bottom: 3rem;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Legal Section */
.legal-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section-block .section-title {
    margin-bottom: 3rem;
}

.legal-section-block:last-child {
    margin-bottom: 0;
}

.legal-info {
    text-align: left;
}

.legal-info h3 {
    color: var(--text-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-family: var(--font-primary);
}

.legal-info h3:first-child {
    margin-top: 0;
}

.legal-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-text strong {
    color: var(--text-navy);
    font-weight: 600;
}

.legal-link {
    color: var(--primary-turquoise);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: var(--highlight-coral);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-turquoise);
}

.footer-description,
.footer-text {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--primary-turquoise);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--secondary-mint);
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links .footer-link {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--gray-400);
    margin: 0;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links .language-switch {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 3rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    
    .hero-subtitle {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-card {
        max-width: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-approach-container {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .subsection-title {
        font-size: 1.75rem;
    }
    
    .tech-item {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-section-block {
        padding: 2rem;
    }
    
    .legal-info h3 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .status-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .status-primary {
        font-size: 0.9rem;
    }
    
    .status-secondary {
        font-size: 0.8rem;
    }
    
    .hero-card {
        max-width: 300px;
    }
    
    .card-header {
        padding: 1.25rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .dashboard-item {
        padding: 0.75rem;
    }
    
    .item-icon {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .item-text {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .tech-item {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .legal-section-block {
        padding: 1.5rem;
    }
    
    .legal-section {
        padding: 4rem 0;
    }
}