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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003366;
    --light-blue: #4da6ff;
    --ocean-blue: #006994;
    --text-dark: #333;
    --text-light: #666;
    --background: #f8f9fa;
    --white: #ffffff;
    --accent: #00a8cc;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    min-height: 44px;
}

.nav-links a:hover {
    color: var(--light-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menu Overlay */
.nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
}

@media (max-width: 768px) {
    .nav-links.active::before {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 105, 148, 0.95) 100%);
    color: var(--white);
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    min-height: 50px;
}

.cta-button:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-blue);
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

/* Problem Section */
.problem {
    background: var(--white);
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-statement .headline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    line-height: 1.4;
}

.problem-statement .ukraine-insight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
}

.problem-statement .solution-intro {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.solution-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.solution-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.assets-grid {
    margin-top: 3rem;
}

.assets-grid h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.asset-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.asset-item {
    text-align: center;
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
    transition: transform 0.3s;
}

.asset-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.asset-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.asset-item p {
    font-weight: 600;
    color: var(--ocean-blue);
    font-size: 1.1rem;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 3rem;
    font-style: italic;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-image {
    text-align: center;
}

.solution-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
}

.solution-features h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.solution-features ul {
    list-style: none;
    padding-left: 0;
}

.solution-features ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.solution-features ul li:before {
    content: "▪";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

/* Platform Section */
.platform {
    background: var(--white);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--background);
    font-size: 1.05rem;
    vertical-align: top;
}

.specs-table td:first-child {
    color: var(--ocean-blue);
    font-weight: 600;
    width: 140px;
    white-space: nowrap;
    padding-left: 0;
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.equipment-table th,
.equipment-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--background);
}

.equipment-table th {
    background: var(--ocean-blue);
    color: var(--white);
    font-weight: 600;
}

.equipment-table tr:hover {
    background: rgba(0, 168, 204, 0.05);
}

.equipment-table .total {
    background: var(--background);
    font-weight: bold;
}

.why-catamaran {
    margin-top: 3rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(77, 166, 255, 0.1) 100%);
    border-radius: 10px;
}

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

.advantage {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advantage h4 {
    color: var(--ocean-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Competitive Comparison Section */
.comparison {
    background: var(--white);
}

.comparison-tagline {
    text-align: center;
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 3rem;
    font-style: italic;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid var(--background);
}

.comparison-table th {
    background: var(--dark-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th.highlight {
    background: var(--accent);
}

.comparison-table td.highlight {
    background: rgba(0, 168, 204, 0.1);
    font-weight: 600;
    color: var(--dark-blue);
}

.comparison-table tr:hover td {
    background: rgba(0, 168, 204, 0.05);
}

.comparison-table tr:hover td.highlight {
    background: rgba(0, 168, 204, 0.15);
}

/* Scalable Platform Section */
.scalable {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
}

.scalable-table-wrapper {
    overflow-x: auto;
}

.scalable-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.scalable-table th,
.scalable-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid var(--background);
}

.scalable-table th {
    background: var(--ocean-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.base-product {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.scalable-table tr:hover td {
    background: rgba(0, 105, 148, 0.05);
}

/* Use Cases Section */
.use-cases {
    background: var(--white);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.use-case h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.use-case ul {
    list-style: none;
    padding-left: 0;
}

.use-case ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.use-case ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.use-case-image {
    margin-top: 20px;
}

.use-case-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Competitive Advantage Section */
.advantage {
    background: var(--white);
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(77, 166, 255, 0.1) 100%);
    border-radius: 10px;
    border-left: 5px solid var(--accent);
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Autonomy Section */
.autonomy {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
}

.autonomy .intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.autonomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.autonomy-feature {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.autonomy-feature:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

/* Market Section */
.market {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
}

.market-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.market-stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.1rem;
    color: var(--ocean-blue);
    font-weight: 600;
}

.market-sizing {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.market-sizing h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.market-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.market-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.market-circle:hover {
    transform: scale(1.1);
}

.market-circle.tam {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--ocean-blue) 100%);
    width: 200px;
    height: 200px;
}

.market-circle.sam {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent) 100%);
}

.market-circle.som {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light-blue) 100%);
    width: 160px;
    height: 160px;
}

.circle-label {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.circle-value {
    font-size: 2.5rem;
}

.market-note {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ocean-blue);
    line-height: 1.8;
}

/* Funding Section */
.funding {
    background: var(--white);
}

.funding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.funding-column h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.funding-column h3:first-child {
    margin-top: 0;
}

.funding-stage {
    margin-bottom: 2rem;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.08) 0%, rgba(77, 166, 255, 0.08) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.funding-stage h4 {
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.funding-column ul {
    list-style: none;
    padding-left: 0;
}

.funding-column ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

.funding-column ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.timeline-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    background: var(--accent);
    color: var(--white);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.milestone {
    margin-top: 1rem;
    padding: 10px;
    background: rgba(0, 168, 204, 0.1);
    border-left: 3px solid var(--accent);
    font-weight: 500;
}

.timeline-item.completed {
    opacity: 0.85;
    border-left: 5px solid #28a745;
}

.timeline-item.completed .timeline-date {
    background: #28a745;
}

.timeline-item.in-progress {
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 168, 204, 0.3);
}

.timeline-item.in-progress .timeline-date {
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 204, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 168, 204, 0);
    }
}

/* Team Section */
.team {
    background: var(--white);
}

.team-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro {
    font-size: 1.3rem;
    color: var(--ocean-blue);
}

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

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(77, 166, 255, 0.1) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-photo {
    margin-bottom: 20px;
}

.team-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.role {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.experience {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.advisors {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 105, 148, 0.05) 100%);
    padding: 30px;
    border-radius: 10px;
    margin-top: 2rem;
}

.advisors h3 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.advisors-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.advisor {
    padding: 15px 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--ocean-blue);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--ocean-blue) 100%);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 10px 0;
}

.company-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-person {
    font-weight: 600;
    margin-top: 1.5rem;
}

.email, .website, .phone {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.email a, .website a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.email a:hover, .website a:hover {
    color: var(--white);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark-blue) 0%, var(--ocean-blue) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        width: 100%;
        padding: 15px 10px;
        text-align: left;
        font-size: 1.1rem;
        display: block;
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .subtitle {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Sections */
    section {
        padding: 60px 15px;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    section h3 {
        font-size: 1.5rem;
    }

    /* Problem Section */
    .problem-statement .headline {
        font-size: 1.4rem;
    }

    .problem-statement .ukraine-insight {
        font-size: 1.2rem;
    }

    .asset-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .asset-item img {
        height: 140px;
    }

    /* Solution */
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-image img {
        max-width: 100%;
    }

    /* Platform */
    .platform-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Specs table - make scrollable */
    .specs-table td:first-child {
        width: 120px;
        font-size: 0.95rem;
    }

    .specs-table td {
        padding: 10px 8px;
        font-size: 0.95rem;
    }

    /* Equipment table - horizontal scroll */
    .equipment-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .equipment-table th,
    .equipment-table td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    /* Comparison tables - horizontal scroll */
    .comparison-table-wrapper,
    .scalable-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .comparison-table,
    .scalable-table {
        font-size: 0.85rem;
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td,
    .scalable-table th,
    .scalable-table td {
        padding: 10px 6px;
    }

    /* Use Cases */
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-image img {
        max-width: 250px;
    }

    /* Advantage */
    .advantage-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Autonomy */
    .autonomy-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Market */
    .market-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .market-circles {
        flex-direction: column;
        gap: 20px;
    }

    .market-circle.tam,
    .market-circle,
    .market-circle.som {
        width: 180px;
        height: 180px;
    }

    /* Funding */
    .funding-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Timeline */
    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-photo img {
        width: 120px;
        height: 120px;
    }

    .advisors-list {
        flex-direction: column;
        gap: 15px;
    }

    /* Why Catamaran */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 40px 15px;
    }

    .hero-content {
        gap: 30px;
    }

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

    .subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    /* Sections */
    section {
        padding: 40px 15px;
    }

    section h2 {
        font-size: 1.6rem;
    }

    section h3 {
        font-size: 1.3rem;
    }

    /* Navigation stays as hamburger on small screens */

    /* Problem Section */
    .problem-statement .headline {
        font-size: 1.2rem;
    }

    .problem-statement .ukraine-insight {
        font-size: 1.1rem;
    }

    .asset-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Tables - smaller text */
    .specs-table td:first-child {
        width: 100px;
        font-size: 0.85rem;
    }

    .specs-table td {
        font-size: 0.85rem;
        padding: 8px 5px;
    }

    .comparison-table,
    .scalable-table {
        font-size: 0.75rem;
        min-width: 500px;
    }

    /* Market */
    .stat-value {
        font-size: 2rem;
    }

    .circle-value {
        font-size: 2rem;
    }

    .market-circle.tam,
    .market-circle,
    .market-circle.som {
        width: 150px;
        height: 150px;
    }

    /* CTA Button */
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Contact */
    .contact-info {
        font-size: 1rem;
    }

    .company-name {
        font-size: 1.5rem;
    }
}
