/* Global Vars */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --bg-color: #030014; /* Deep dark blue/black */
    --text-color: #ffffff;
    --text-muted: #b4bcd0;
    --primary-color: #7042f8; /* Purple */
    --secondary-color: #00d9ff; /* Cyan */
    --accent-glow: #7042f8;
    --max-width: 1280px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}


/* Header */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    color: white;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(13, 18, 31, 0.75); /* Dark Glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 70px; /* Slightly smaller on scroll for effect */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: blod;
}

.logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #4aaabf;
}

.logo-wrapper>svg{
    width: 20px;
    height: 20px;
}

.logo>.logo-text{
    color: white;
    font-size: 1.13rem;
}

.nav-desktop .nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.88rem;
    color: #cbd5e1;
    font-weight: 400;
}

.nav-link:hover {
    color: white;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.cta-main-header{
    font-size: 0.88rem;
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    padding: 10px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-main-header:hover {
    box-shadow: 0 4px 15px rgba(37, 167, 163, 0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: 1px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}


/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-content{
    background-color: white !important;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-bottom: 0px;
    padding: 20px;
    padding-left: 30px;
}

.mobile-nav-list a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 40px 20px;
}

.mobile-cta .btn {
    text-align: center !important;
    width: 100%;
}

.mobile-cta .btn-secondary {
    display: none;
}

.mobile-cta .btn-primary {
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    border: none;
    padding: 18px;
    font-size: 18px;
    border-radius: 8px;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-cta .btn-primary:hover {
    box-shadow: 0 4px 15px rgba(37, 167, 163, 0.4);
}

.line-break{
    margin: 0px 20px;
    color: gray;
}


.hero {
    background: linear-gradient(135deg, hsl(210 65% 20%) 0%, hsl(205 70% 35%) 100%);
    width: 100%;
    margin-top: -80px;
    padding: 280px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: white; /* Light blue text */
    font-size: 14px;
    font-weight: 500;
}

.hero-badge>svg{
    color: #00d9ff;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8; /* Slate 400 */
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(37, 167, 163, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
    scale: 0.8;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}



@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav-desktop, .header-cta {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Light slate bg */
    color: #0f172a; /* Dark text */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.popular-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #eff6ff; /* Light blue bg */
    color: #3b82f6; /* Blue icon */
    border-radius: 12px;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.card-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.card-arrow {
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card:hover .card-arrow {
    transform: translateX(4px);
    color: #23A89D;
}

.category-card:hover .card-icon svg {
    color: #23A89D;
    transition: color 0.3s ease;
}

.popular-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.popular-card-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.popular-section{
    padding: 80px 0;
    background-color: #eef2f680; /* Light slate bg */
    color: #0f172a; /* Dark text */
}

@media (max-width: 640px) {
    .categories-grid, 
    .popular-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }

    .two-btns-container {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .two-btns-button {
        width: 100%;
        justify-content: center;
    }

    .start-container {
        padding: 30px 20px;
    }

    .hero {
        padding: 140px 0;
        padding-top: 220px !important;
    }

    .categories-section,
    .popular-section,
    .start-section,
    .two-btns {
        padding: 40px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

.start-section{
    padding: 80px 0;
    background-color: #f8fafc;
    color: white;
}

.start-container{
    background-color: #15385C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1000px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.start-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.start-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.start-container > * {
    position: relative;
    z-index: 2;
}

.start-button{
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.start-button:hover {
    box-shadow: 0 4px 15px rgba(37, 167, 163, 0.4);
}

.start-button svg {
    transition: transform 0.3s ease;
    scale: 0.8;
}

.start-button:hover svg {
    transform: translateX(5px);
}

.start-section-header>h2{
    color: white;
}

.start-section-header>p{
    color: white;
}

.two-btns{
    padding: 80px 0;
    background-color: #f8fafc;
    color: white;
}

.two-btns-container{
    display: flex;
    gap: 16px;
    justify-content: center;
}

.two-btns-button{
    border: 0.5px solid lightgray;
    background-color: white;
    color: black;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.two-btns-button:hover {
    border-color: rgb(86, 127, 189);
    color: rgb(86, 127, 189);
}

/* Footer */
.footer {
    background-color: #182335; /* Dark blue/black from image */
    padding: 60px 0 30px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4aaabf;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-actions {
    display: flex;
    gap: 12px;
}

.footer-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 390px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Inner Page Hero */
.inner-hero {
    background: linear-gradient(135deg, hsl(210 65% 20%) 0%, hsl(205 70% 35%) 100%);
    padding: 160px 0 80px;
    margin-top: -80px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: #64748b;
}

.breadcrumb-current {
    color: white;
}

.brand-pill{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #cacaca21;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #cacaca;
}

.inner-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    padding-right: 100px;
    line-height: 50px;
}

.inner-hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Split Hero Layout */
.inner-hero-split {
    text-align: left;
    padding: 140px 0 60px;
}

.inner-hero-split .breadcrumb {
    justify-content: flex-start;
}

.inner-hero-split .inner-hero-subtitle {
    margin: 0;
}

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

.inner-hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inner-hero-cta {
    margin-top: 16px;
}

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

.hero-boat-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Floating Anchor Animation */
.floating-anchor {
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    width: 400px;
    height: 400px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnchor 3s ease-in-out infinite;
}

.floating-anchor svg {
    color: #00d9ff;
    width: 36px;
    height: 36px;
}

@keyframes floatAnchor {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* Responsive Split Hero */
@media (max-width: 900px) {
    .inner-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .inner-hero-split {
        text-align: center;
    }
    
    .inner-hero-split .breadcrumb {
        justify-content: center;
    }
    
    .inner-hero-split .inner-hero-subtitle {
        margin: 0 auto;
    }
    
    .inner-hero-visual {
        order: -1;
    }
    
    .hero-boat-image {
        max-width: 400px;
    }
    
    .inner-hero-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .inner-hero-split {
        padding: 120px 0 40px;
    }
    
    .inner-hero-title {
        font-size: 36px;
    }
    
    .hero-boat-image {
        max-width: 300px;
    }
    
    .floating-anchor {
        width: 60px;
        height: 60px;
        top: -10px;
    }
    
    .floating-anchor svg {
        width: 28px;
        height: 28px;
    }
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-intro {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 48px;
}

.article-block {
    margin-bottom: 48px;
}

.article-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Factors List */
.factors-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.factor-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.factor-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.factor-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.factor-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.factor-item p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-left: 48px;
}

/* Boat Types Grid */
.boat-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.boat-type-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.boat-type-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.boat-type-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.boat-type-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.boat-type-features {
    list-style: none;
    padding: 0;
}

.boat-type-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    padding: 6px 0;
}

.boat-type-features li::before {
    content: "✓";
    color: #25A7A3;
    font-weight: 600;
}

/* Pro Tips Box */
.pro-tips-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #fcd34d;
}

.pro-tips-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #92400e;
}

.pro-tips-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #92400e;
}

.pro-tips-list {
    list-style: none;
    padding: 0;
}

.pro-tips-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #78350f;
    font-size: 15px;
    line-height: 1.6;
}

.pro-tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #b45309;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* Article CTA */
.article-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, #15385C 0%, #1e4976 100%);
    border-radius: 24px;
    margin-top: 48px;
}

.article-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.article-cta .btn-primary {
    display: inline-flex;
    margin: 0 auto;
}

/* Responsive for Article Page */
@media (max-width: 768px) {
    .inner-hero {
        padding: 140px 0 60px;
    }
    
    .inner-hero-title {
        font-size: 32px;
    }
    
    .features-grid,
    .boat-types-grid {
        grid-template-columns: 1fr;
    }
    
    .factor-item p {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .article-cta {
        padding: 32px 24px;
    }
}

