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

:root {
    --primary-color: #DC143C;
    --primary-dark: #B0112E;
    --secondary-color: #0066CC;
    --accent-color: #7FB3B3;
    --accent-light: #B8D4D4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,0 L0,0 Z" fill="rgba(127,179,179,0.1)"/><path d="M0,600 Q300,500 600,600 T1200,600 L1200,0 L0,0 Z" fill="rgba(127,179,179,0.15)"/></svg>');
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Business Description */
.business-desc {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.business-desc-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.business-desc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.business-desc-card {
    background: var(--bg-light);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.business-desc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.business-desc-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    font-size: 2.5rem;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12) 0%, rgba(0, 102, 204, 0.12) 100%);
    border-radius: 1rem;
}

.business-desc-key {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.business-desc-detail {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle,
.section-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.product-stage-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-status-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 1rem 1.5rem;
}

.product-status-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    opacity: 0.95;
}

.product-status-launched {
    background: var(--bg-light);
    text-align: center;
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.product-status-tick {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.product-status-word {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.product-stage-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 1.5rem 1rem;
    padding-top: 1.25rem;
}

.product-stage-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 1.5rem 1rem;
    text-align: left;
}

.product-stage-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.product-stage-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
}

.product-stage-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.product-stage-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.product-traction-note {
    font-size: 0.975rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.features-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-demo-cta {
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.product-demo-cta a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.product-demo-cta a:hover {
    text-decoration: underline;
}

.product-content {
    position: relative;
    z-index: 1;
}

.product-how-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.product-how-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.product-screenshots-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
}

.product-features-cards {
    margin-bottom: 2.5rem;
}

.product-features-cards .business-desc-card:nth-child(4) {
    grid-column: 2;
}

.core-stats-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(to right, rgba(255, 210, 215, 0.5) 0%, rgba(220, 235, 255, 0.6) 100%);
    border-radius: 9999px;
    border: none;
}

.core-stat {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.core-stat-value {
    font-weight: 700;
    color: var(--text-dark);
}

.core-stat-sep {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 300;
    user-select: none;
}

.award-section-wrap {
    padding: 4rem 0;
    background: var(--bg-light);
}

.award-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.award-more {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.award-section {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.award-heading {
    margin-top: 0;
}

.award-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.award-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.product-metrics-heading {
    margin-top: 2rem;
}

.business-desc-icon.metric-numeric {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12) 0%, rgba(0, 102, 204, 0.12) 100%);
}

.product-features-wrap {
    margin-bottom: 2.5rem;
    overflow-x: auto;
}

.product-features-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    font-size: 1rem;
}

.product-features-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.product-features-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
}

.product-features-table th:first-child {
    border-radius: 1rem 0 0 0;
}

.product-features-table th:last-child {
    border-radius: 0 1rem 0 0;
}

.product-features-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
}

.product-features-table tbody tr:last-child td {
    border-bottom: none;
}

.product-features-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.product-features-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.04);
}

.product-showcase {
    text-align: center;
    margin-bottom: 2rem;
}

.product-metrics-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
}

.product-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-metric-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.product-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-metric-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.product-metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.product-showcase-image {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.product-showcase-caption {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.product-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
}

.meta-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.meta-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.meta-item p {
    color: var(--text-light);
    font-size: 0.975rem;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 3px solid transparent;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.company-badge {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.company-badge p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.company-badge strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.team-category:first-of-type {
    margin-top: 0;
}

.team-subhead {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.25rem;
    text-align: center;
}

.team-subhead:first-of-type {
    margin-top: 0;
}

.team-advisors-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-grid-management {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-grid-advisors {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Team member block (Bowtie-style: name → credentials → role → bio) */
.team-member {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-member-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.15rem;
}

.team-member-credentials {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.35rem;
}

.team-member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.75rem;
}

.team-member-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin: 0 0 auto;
    flex-grow: 1;
}

.team-member-expertise {
    font-size: 0.9rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.team-member-expertise strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.team-member-expertise ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.team-member-expertise li {
    padding: 0.2rem 0 0.2rem 1.25rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.5;
}

.team-member-expertise li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.team-member .link-button {
    margin-top: 0.75rem;
    align-self: flex-start;
}

.team-member-advisor {
    padding: 1.5rem;
}

.team-member-advisor .team-member-name {
    font-size: 1.2rem;
}

.team-card-advisor .team-photo-placeholder {
    display: none;
}

.team-card-vn {
    border-top: 4px solid var(--primary-color);
}

.team-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    max-height: 220px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

.team-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-height: 220px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--border-color) 0%, var(--accent-light) 100%);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.team-photo-placeholder span {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-photo-placeholder small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.team-experience {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.team-experience h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-experience ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.team-experience li {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.team-experience li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.team-role {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio,
.team-meta {
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-meta {
    font-weight: 500;
}

.team-links {
    margin-top: 0.75rem;
}

.link-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button:hover {
    background: #004c99;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Screenshots Section */
.screenshots-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.screenshot-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.screenshot-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.screenshot-caption {
    padding: 1.5rem;
}

.screenshot-caption h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.screenshot-caption p {
    font-size: 0.975rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CEO Section */
.ceo-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-image-container {
    position: sticky;
    top: 100px;
}

.ceo-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.ceo-image-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ceo-image-placeholder small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.ceo-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.ceo-profile h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ceo-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.ceo-achievements {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.ceo-achievements h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.ceo-achievements ul {
    list-style: none;
    padding-left: 0;
}

.ceo-achievements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.ceo-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text .about-subhead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.about-text .about-milestones,
.about-text .about-achievements {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

.about-text .about-milestones li,
.about-text .about-achievements li {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.about-text .about-milestones li::before,
.about-text .about-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.stat-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: 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 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid-management {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-metrics-grid {
        grid-template-columns: 1fr;
    }

    .business-desc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-features-cards .business-desc-card:nth-child(4) {
        grid-column: auto;
    }

    .business-desc-title {
        font-size: 1.75rem;
    }

    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .ceo-image-container {
        position: static;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .team-grid-management {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

    .product-section,
    .ceo-section,
    .about-section {
        padding: 4rem 0;
    }
}
