
/* ==========================================================
   Little Creek Hosting - Main Stylesheet
   ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f8fb;
    color: #132238;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

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

/* ==========================================================
   Header / Navigation
   ========================================================== */

.topbar {
    background: #061224;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.brand img {
    height: 82px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    transition: color .2s ease;
}

nav a:hover {
    color: #19c5bf;
}

nav a.active {
    color: #19c5bf;
}

.btn,
.btn-outline {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all .2s ease;
}

.btn {
    background: #19c5bf;
    color: #ffffff;
}

.btn:hover {
    background: #15ada8;
    color: #ffffff;
}

.btn-outline {
    border: 1px solid #4a6d96;
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255,255,255,.06);
    color: #ffffff;
}

/* ==========================================================
   Hero
   ========================================================== */

.hero {
    background: linear-gradient(135deg,#08182d,#0c2951);
    color: #ffffff;
    padding: 75px 0;
}

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

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 18px 0;
}

.hero h1 span {
    color: #19c5bf;
}

.hero p {
    color: #d8e4ef;
    font-size: 1.08rem;
    max-width: 620px;
}

.eyebrow {
    display: inline-block;
    background: #103e4f;
    color: #7ee7e2;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

.cta {
    margin: 35px 0;
}

.cta a {
    margin-right: 12px;
}

.trust {
    list-style: none;
    display: flex;
    gap: 22px;
    font-size: 14px;
    color: #d8e4ef;
}

.hero-art img {
    width: 100%;
}

/* ==========================================================
   Sections
   ========================================================== */

.features,
.why,
.plans {
    padding: 70px 0;
}

.plans {
    background: #eef3f8;
}

.section-title,
.features h2,
.why h2,
.plans h2,
.final-cta h2 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 2.2rem;
}

/* ==========================================================
   Cards
   ========================================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
}

.card,
.price-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: #5d7188;
}

/* ==========================================================
   Pricing
   ========================================================== */

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 28px;
    margin-top: 30px;
}

.price-card {
    position: relative;
}

.price-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.price-card ul li {
    text-align: center;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f6;
}

.price {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    margin: 24px 0;
}

.price-card .btn {
    width: 100%;
    text-align: center;
}

.featured {
    border: 3px solid #1f74ff;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f74ff;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ==========================================================
   Final CTA
   ========================================================== */

.final-cta {
    background: linear-gradient(135deg,#08182d,#0c2951);
    color: #ffffff;
    text-align: center;
    padding: 75px 20px;
}

.final-cta p {
    max-width: 700px;
    margin: 20px auto 30px;
    color: #d8e4ef;
}

/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    background: #061224;
    color: #b9c8d9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 50px 20px;
    align-items: start;
}

.footer-company {
    max-width: 420px;
}

.footer-logo {
    width: 380px;
    margin-bottom: 18px;
}

.footer-tagline {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-company p {
    margin-bottom: 15px;
}

.footer-contact {
    color: #90a5bd;
    line-height: 1.8;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-links ul,
.footer-links li,
.site-footer ul,
.site-footer li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul {
    margin-bottom: 28px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b9c8d9;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #19c5bf;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #90a5bd;
    font-size: .9rem;
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

    .trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav {
        flex-direction: column;
    }

    nav {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 40px;
    }

    .cta a {
        display: block;
        width: 100%;
        margin: 0 0 12px;
    }

    .trust {
        display: block;
        text-align: center;
    }

    .trust li {
        margin-bottom: 8px;
    }

}

.stats-section {
    padding: 80px 20px;
    background: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #0f172a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 10px;
}

.stat-label {
    color: #475569;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


.testimonials-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.stars {
    color: #14b8a6;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.customer-name {
    font-weight: 600;
    color: #0f172a;
}

.testimonial-footer {
    text-align: center;
    margin-top: 40px;
}

.trustpilot-btn {
    display: inline-block;
    background: #14b8a6;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trustpilot-btn:hover {
    background: #0f766e;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.trust-bar span {
    white-space: nowrap;
}

.trust-bar span::before {
    color: #14b8a6;
}


.comparison-section {
    padding: 80px 20px;
    background: #ffffff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.comparison-card h3 {
    margin-bottom: 20px;
    color: #0f172a;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.good {
    border-top: 4px solid #14b8a6;
}

.bad {
    border-top: 4px solid #94a3b8;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.trust-indicators {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.trust-item::first-letter {
    color: #14b8a6;
}

@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 15px;
    }
}

.plan-best-for {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    text-align: left;
}

.plan-best-for strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
}

.plan-best-for ul {
    margin: 0;
    padding-left: 18px;
}

.plan-best-for li {
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: #475569;
}

.why-started-section {
    padding: 80px 0;
}

.why-started-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.why-started-image {
    flex: 1;
}

.why-started-image img {
    width: 20%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.photo-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.why-started-text {
    flex: 1;
}

.why-started-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #475569;
}

@media (max-width: 768px) {
    .why-started-content {
        flex-direction: column;
    }
}


.why-started-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    display: flex;
    align-items: flex-start; /* aligns image with top of text */
    gap: 40px;
}

.why-started-text {
    flex: 1;
}

.why-started-text p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: #475569;
}

.why-started-image {
    width: 10px;
    flex-shrink: 0;
}

.why-started-image img {
    width: 50%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.photo-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .why-started-card {
        flex-direction: column;
        padding: 25px;
    }

    .why-started-image {
        width: 500%;
    }
}


