@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --bg-deep: #050811;
    --bg-card: #131b2e;
    --bg-card-hover: #1b253c;
    --border-color: rgba(226, 197, 154, 0.15);
    --border-color-hover: rgba(226, 197, 154, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #e2c59a;
    --accent-dark: #b8986c;
    --accent-glow: rgba(226, 197, 154, 0.08);
    --accent-gradient: linear-gradient(135deg, #e2c59a 0%, #b8986c 100%);
    --text-gold: #f5e1c3;
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-secondary);
    background-color: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography Helpers */
h1, h2, h3, h4 {
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    font-weight: 350;
    line-height: 1.6;
}

/* Badge Component */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--accent-color);
    margin-bottom: 1.25rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.025em;
}

.logo::after {
    content: '.';
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.925rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(5, 8, 17, 0.78), rgba(5, 8, 17, 0.94)), url('hero_network_bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    border-bottom: 1px solid var(--border-color);
}

.hero-centered-content {
    max-width: 950px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.3rem, 5.5vw, 3.875rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.highlight-gold {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 3.25rem;
    line-height: 1.8;
    font-weight: 350;
}

.hero-centered-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Visual & Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent-gradient);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-mockup {
    background: rgba(11, 15, 25, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.75rem;
    width: 100%;
    max-width: 360px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.75rem;
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
}

.hero-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.hero-mockup-dot:first-child { background: #ef4444; }
.hero-mockup-dot:nth-child(2) { background: #eab308; }
.hero-mockup-dot:nth-child(3) { background: #22c55e; }

.hero-mockup-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-mockup-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-item-img {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

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

.mockup-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-item-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Buttons */
.btn {
    padding: 0.875rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #050811;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--text-gold);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(226, 197, 154, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Focus Areas Section */
.features {
    padding: 7rem 2rem;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg), 0 0 20px 0 var(--accent-glow);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--text-gold);
    transform: scale(1.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(226, 197, 154, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(226, 197, 154, 0.15);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-color);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.975rem;
}

/* About Grid Home */
.about {
    padding: 7rem 2rem;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-copy {
    text-align: left;
}

.about-copy h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-copy p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem 1.5rem;
    border-radius: 0.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-mini-card-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.value-mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.value-mini-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Portfolio page grid styling */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg), 0 0 20px 0 var(--accent-glow);
}

.portfolio-item.coming-soon {
    opacity: 0.55;
    background: rgba(11, 15, 25, 0.4);
}

.portfolio-item.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.portfolio-image {
    width: 100%;
    height: 230px;
    background: rgba(3, 7, 18, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.portfolio-image img {
    max-width: 75%;
    max-height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.03);
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
    align-items: center;
}

.badge-row a img {
    width: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
    display: block;
}

.row-badge-google img {
    height: 38px;
}

.row-badge-apple img {
    height: 25px;
}

.badge-row a:hover img {
    transform: scale(1.04);
}

.placeholder-box {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.placeholder-box p {
    font-size: 1rem;
    margin: 0;
}

/* App Overview Pages */
.logo-image {
    display: block;
    max-width: 150px;
    width: 100%;
    height: auto;
    margin: 2rem auto 0;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.content-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 2.5rem auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: block;
}

.badge-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.badge-group a img {
    width: auto;
    transition: transform 0.2s ease;
    display: block;
}

.badge-google img {
    height: 56px;
}

.badge-apple img {
    height: 36px;
}

.badge-group a:hover img {
    transform: scale(1.04);
}

.cta-section {
    text-align: center;
    margin: 3.5rem 0;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.cta-section p {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem !important;
}

/* Screenshots Gallery */
.screenshots-section {
    margin: 4rem 0;
    padding: 1rem 0;
}

.screenshots-section h2 {
    margin-bottom: 2rem !important;
    text-align: center;
    border: none;
}

.screenshots-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-card);
    -webkit-overflow-scrolling: touch;
}

.screenshots-slider::-webkit-scrollbar {
    height: 6px;
}

.screenshots-slider::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
}

.screenshots-slider::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.screenshots-slider::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.screenshot-card {
    flex: 0 0 auto;
    width: 250px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    background: #000;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-xl);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.scroll-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 300;
}

.back-link {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Page Layout Styles */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.06) 0%, var(--bg-deep) 80%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.page-header p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 350;
    margin: 0 auto;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #eab308;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    color: var(--text-primary);
}

.content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.content-section {
    margin-bottom: 6rem;
}

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

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-badges .badge {
    margin-bottom: 0;
}

.card-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

/* About Page Specifics */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.mission-callout {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.04) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 3rem 2.5rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 3rem 0;
}

.mission-callout p {
    font-size: 1.35rem !important;
    line-height: 1.7 !important;
    color: var(--text-primary) !important;
    font-weight: 300;
    margin-bottom: 0 !important;
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    text-align: left;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-color-hover);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 4.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.925rem;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.85rem;
}

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

/* Responsive Overrides */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    .nav-links {
        gap: 1.25rem;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text {
        align-items: center;
        text-align: center;
    }
    .hero-text .cta-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-visual {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .content {
        padding: 4rem 1.5rem;
    }
    .timeline::before {
        left: 10px;
    }
    .timeline-item {
        padding-left: 35px;
    }
    .timeline-dot {
        left: 7px;
    }
}
