html, body {
    width: 100%;
    overflow-x: hidden;
}

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

:root {
    --bg: white;
    --text: #050505;
    --accent: #1F5BFF;
    --accent-dark: #1746D6;
    --surface: #F8FAFF;
    --border: #D8DFFF;
    --muted: #4D4D4D;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}
    /* Top and bottom decorative backgrounds for all pages.
       Place your images in the Assets/ folder as `bg-top.png` and `bg-bottom.png`.
       These are decorative only; they are disabled on small screens. */

    body::before,
    body::after {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        height: 260px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        pointer-events: none;
        z-index: -1;
        opacity: 0.98;
    }

    /* Use a high-res, free abstract background image hosted by Unsplash for crisp rendering.
       If you prefer a local image, tell me and I'll save it into `Assets/` instead. */
    body::before {
        top: 0;
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.0) 35%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,0.85) 0%, rgba(200,230,255,0.6) 35%),
            linear-gradient(135deg, rgba(245,250,255,1) 0%, rgba(225,240,255,1) 50%, rgba(210,235,255,1) 100%);
        background-size: cover;
        background-blend-mode: screen;
        opacity: 0.98;
    }

    body::after {
        bottom: 0;
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.0) 35%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,0.85) 0%, rgba(200,230,255,0.6) 35%),
            linear-gradient(315deg, rgba(245,250,255,1) 0%, rgba(225,240,255,1) 50%, rgba(210,235,255,1) 100%);
        background-size: cover;
        background-blend-mode: screen;
        transform: scaleX(-1);
        opacity: 0.98;
    }

    @media (max-width: 720px) {
        body::before,
        body::after { display: none; }
    }

header {
    width: 100%;
    padding: 25px 60px;
    display: flex;
    align-items: center;
}

.logo {
    width: 260px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Ensure the header logo has no white background or box styling */
.logo {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-block;
}

.logo:hover {
    animation: bounce 0.8s ease;
}

@keyframes bounce {
    0% { transform: scale(1.1) translateY(0); }
    30% { transform: scale(1.1) translateY(-10px); }
    50% { transform: scale(1.1) translateY(0); }
    70% { transform: scale(1.1) translateY(-5px); }
    100% { transform: scale(1.1) translateY(0); }
}

nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 42px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover {
    color: var(--accent);
    transform: translateY(-4px);
}

nav a.active {
    font-weight: 900;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 4px;
}

.hero {
    text-align: center;
    padding: 55px 40px 40px;
    overflow: hidden;
}

.intro {
    font-size: 58px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 105px;
    font-weight: 900;
    line-height: 0.9;
    margin-top: 30px;
}

.hero-title span {
    display: inline-block;
    color: black;
    cursor: pointer;
    transition: 0.4s ease;
}

.hero-title span:hover {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    transform: translateY(-10px);
}

.hero-text {
    max-width: 900px;
    margin: 25px auto 35px;
    font-size: 26px;
    line-height: 1.5;
    text-align: center;
}

.image-slider {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.image-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollImages 35s linear infinite;
}

.image-track img {
    width: 380px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

@keyframes scrollImages {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-405px * 5)); }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 18px 34px;
    text-decoration: none;
    border: 2px solid var(--accent);
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease;
    border-radius: 14px;
}

.btn.black {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn.white {
    background: white;
    color: black;
    border-color: var(--accent);
}

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

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

.page-card {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 30px;
    border-radius: 18px;
    margin-top: 25px;
    transition: 0.3s ease;
}

.page-card:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
}

.page-card h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.page-card p {
    font-size: 18px;
    line-height: 1.6;
}

.care-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.care-hero-copy {
    text-align: left;
    max-width: 700px;
}

.hero-small-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 16px;
}

.care-hero h1 {
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 760px;
    font-size: 22px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 22px;
    margin-top: 36px;
}

.care-hero-panel {
    background: linear-gradient(180deg, rgba(31,91,255,0.15), rgba(255,255,255,0.85));
    border: 1px solid rgba(31,91,255,0.2);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(31,91,255,0.08);
}

.domain-help-card {
    background: white;
    border-radius: 26px;
    padding: 40px 32px;
    max-width: 460px;
    box-shadow: 0 25px 60px rgba(31,91,255,0.08);
}

.domain-help-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 16px;
}

.domain-help-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.domain-help-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--muted);
}

.pricing-note {
    margin-top: 28px;
    font-size: 16px;
    color: var(--muted);
    text-align: center;
}

.why-section,
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 18px;
}

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

.why-card,
.plan-card {
    background: white;
    border: 1px solid rgba(31,91,255,0.14);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(31,91,255,0.06);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-card:hover,
.plan-card:hover,
.page-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.why-card h3,
.plan-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.why-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.why-card p,
.plan-card p,
.plan-card li {
    font-size: 17px;
    line-height: 1.8;
}

.plan-price {
    font-size: 42px;
    font-weight: 900;
    margin: 24px 0;
    color: var(--accent);
}

.plan-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.plan-card li {
    position: relative;
    padding-left: 26px;
}

.plan-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.plan-featured {
    background: linear-gradient(180deg, #1f5bff, #2a76ff);
    color: white;
    border-color: transparent;
    transform: translateY(-10px);
    min-height: 540px;
}

.plan-featured .plan-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.plan-featured .plan-price {
    color: white;
}

.plan-featured .btn {
    background: white;
    color: #1f5bff;
    border-color: white;
}

.cta-card {
    text-align: center;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(31,91,255,0.12), rgba(255,255,255,0.98));
    border: 1px solid rgba(31,91,255,0.18);
    border-radius: 28px;
}

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

.included-card {
    background: white;
    border: 1px solid rgba(31,91,255,0.08);
    border-radius: 18px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(31,91,255,0.04);
}

.included-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-dark);
}

.perfect-for {
    text-align: left;
    margin-top: 16px;
}

.perfect-for ul {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.perfect-for li {
    background: #fff;
    border: 1px solid rgba(31,91,255,0.06);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
}

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

.testimonial-card {
    background: white;
    border: 1px solid rgba(31,91,255,0.14);
    border-radius: 28px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(31,91,255,0.08);
}

.testimonial-stars {
    font-size: 26px;
    margin: 18px 0;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 18px;
}

.testimonial-author {
    font-size: 17px;
    font-weight: 700;
}

.final-cta-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--accent);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
    margin-top: 40px;
}

.final-cta-banner h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.final-cta-banner p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

.final-cta-banner .btn.black {
    background: white;
    color: var(--accent);
    border-color: white;
}

.final-cta-banner .btn.black:hover {
    background: white;
    opacity: 0.95;
}

.cta-card h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-card .btn {
    padding: 16px 36px;
}

@media (max-width: 1000px) {
    .care-hero {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
    }

    .care-hero h1 {
        font-size: 58px;
    }

    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .page-section,
    .why-section,
    .pricing-section {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .domain-search {
        flex-direction: column;
    }

    .domain-search button,
    .domain-search input {
        width: 100%;
    }
}

.about-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 120px;
    padding: 100px 90px 60px;
}

.about-menu {
    font-size: 18px;
    line-height: 1.7;
    padding-top: 80px;
}

.about-content h1 {
    font-size: 95px;
    font-weight: 900;
    margin-bottom: 35px;
}

.about-content p {
    max-width: 900px;
    font-size: 24px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 25px;
}

.wide-image {
    padding: 40px 90px;
}

.wide-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.quote-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 90px;
}

.quote p {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    font-style: italic;
}

.quote-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-section-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    padding: 90px;
    align-items: center;
    background: var(--accent);
    color: white;
}

.team-images-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.member-card {
    text-align: center;
}

.member-card img,
.team-placeholder {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: var(--surface);
}

.team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-size: 90px;
    font-weight: 900;
}

.member-card h3 {
    margin-top: 15px;
    font-size: 30px;
    font-weight: 900;
    color: white;
}

.member-card p {
    font-size: 17px;
    color: white;
    margin-top: 5px;
}

.team-content-new h2 {
    font-size: 85px;
    font-weight: 900;
    margin-bottom: 25px;
}

.team-content-new p {
    font-size: 24px;
    line-height: 1.6;
    color: white;
}

.stats-new {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stats-new h3 {
    font-size: 55px;
    font-weight: 900;
    color: white;
}

.stats-new p {
    font-size: 18px;
    color: white;
}

.core-values-section {
    padding: 90px;
    margin-top: 60px;
}

.core-values-section h3 {
    font-size: 85px;
    font-weight: 900;
    margin-bottom: 35px;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.core-value-box {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 38px 120px 28px 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.core-value-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.core-value-box img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.core-value-box h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 900;
}

.core-value-box p {
    font-size: 24px;
    line-height: 1.7;
    color: var(--muted);
}

.app-logos {
    padding: 40px 0 60px;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: appScroll 30s linear infinite;
}

.slider-track img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.slider-track img:hover {
    transform: scale(1.1);
}

@keyframes appScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.services-alternate {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.service-item {
    margin-bottom: 80px;
}

.service-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    align-items: center;
}

.service-item.right .service-inner {
    grid-template-columns: 1fr 420px;
}

.service-copy {
    background: var(--surface);
    border-radius: 28px;
    padding: 35px;
}

.service-copy h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 18px;
}

.service-copy p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
}

.service-list {
    margin: 20px 0 0 25px;
}

.service-list li {
    font-size: 18px;
    line-height: 1.7;
}

.service-image {
    overflow: hidden;
    border-radius: 30px;
}

.service-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.portfolio-showcase {
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 0;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 55px;
    align-items: flex-start;
    margin-bottom: 110px;
}

.portfolio-item.reverse {
    grid-template-columns: 32% 68%;
}

.portfolio-media video,
.portfolio-media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.portfolio-media video {
    aspect-ratio: 16 / 9;
}

.portfolio-media img {
    height: 420px;
}

.portfolio-copy h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 26px;
}

.portfolio-copy p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 26px;
}

.portfolio-copy ul {
    margin-left: 24px;
}

.portfolio-copy li {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cv-holder {
    display: flex;
    justify-content: center;
}

.cv-a4 {
    width: auto !important;
    height: 700px !important;
    aspect-ratio: 1 / 1.414;
    object-fit: contain !important;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-panel,
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
}

.contact-panel h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 22px;
}

.contact-panel p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.form-group label {
    font-size: 16px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 16px;
}

.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 18px 28px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

#form-status {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
}

.service-banner {
    width: 100%;
    background: var(--accent);
    overflow: hidden;
    margin-top: 80px;
    padding: 18px 0;
}

.service-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: serviceScroll 20s linear infinite;
}

.service-track span {
    color: white;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

.care-plans-section {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 60px 40px;
    background: linear-gradient(180deg, rgba(31,91,255,0.08) 0%, rgba(248,250,255,0.95) 100%);
    border: 1px solid rgba(31,91,255,0.18);
    border-radius: 36px;
}

.care-plans-intro {
    text-align: center;
    margin-bottom: 45px;
}

.care-plans-intro .section-label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-dark);
    font-weight: 900;
    margin-bottom: 14px;
    display: inline-block;
}

.care-plans-intro h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
}

.care-plans-intro .section-copy {
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.75;
    color: var(--muted);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.hosting-card {
    position: relative;
    background: white;
    border: 1px solid rgba(31,91,255,0.15);
    border-radius: 28px;
    padding: 38px 30px 32px;
    box-shadow: 0 22px 60px rgba(31,91,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(31,91,255,0.12);
    border-color: rgba(31,91,255,0.35);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -2px;
    background: var(--accent-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hosting-card h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 38px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 18px;
}

.plan-copy {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 24px;
}

.hosting-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.hosting-card li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.hosting-card li::before {
    content: '✔';
    color: var(--accent);
    margin-right: 10px;
}

.care-addons {
    text-align: center;
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(31,91,255,0.05);
    border: 1px solid rgba(31,91,255,0.12);
}

.care-addons h4 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-card {
    text-align: center;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(31,91,255,0.1), rgba(255,255,255,0.96));
    border: 1px solid rgba(31,91,255,0.18);
    border-radius: 28px;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-card .btn {
    padding: 16px 36px;
}

.care-addons p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.care-plan-cta {
    display: inline-block;
    margin-top: 0;
    padding: 16px 32px;
    border-radius: 14px;
}

.business-card {
    background: linear-gradient(180deg, rgba(31,91,255,0.12), rgba(255,255,255,0.98));
    border-color: rgba(31,91,255,0.28);
}

.premium-card {
    background: linear-gradient(180deg, rgba(31,91,255,0.18), rgba(248,250,255,1));
    border-color: rgba(31,91,255,0.32);
}

/* Comparison Table Styles */
.comparison-table-section {
    max-width: 1000px;
    margin: 60px auto 40px;
    padding: 40px;
}

.comparison-table-section h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid rgba(31,91,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31,91,255,0.08);
}

.comparison-table thead {
    background: linear-gradient(90deg, rgba(31,91,255,0.08), rgba(31,91,255,0.05));
    border-bottom: 2px solid rgba(31,91,255,0.15);
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-dark);
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(31,91,255,0.1);
    font-size: 16px;
}

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

.comparison-table tbody tr:hover {
    background: rgba(31,91,255,0.03);
}

/* Trust Section Styles */
.trust-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 60px 40px;
}

.trust-section .section-intro {
    margin-bottom: 50px;
}

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

.trust-card {
    background: var(--surface);
    border: 1px solid rgba(31,91,255,0.12);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31,91,255,0.1);
    border-color: rgba(31,91,255,0.25);
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text);
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

/* CTA Buttons Container */
.final-cta-banner .cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.final-cta-banner .cta-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero,
    .page-section,
    .pricing-section,
    .included-section,
    .cta-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-cards,
    .included-grid,
    .perfect-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .pricing-card,
    .included-card,
    .perfect-card {
        width: 100%;
        max-width: 100%;
    }

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

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

    .hosting-card {
        padding: 30px 22px;
    }

    .hosting-card h3 {
        font-size: 32px;
    }

    .plan-price {
        font-size: 32px;
    }
}

.care-addons h4 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.care-addons p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.care-plan-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 32px;
    border-radius: 14px;
}

@keyframes serviceScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    header {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo {
        width: 190px;
    }

    nav {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    nav a {
        font-size: 16px;
    }

    .hero {
        padding: 35px 20px;
    }

    .intro {
        font-size: 42px;
        line-height: 1;
    }

    .hero-title {
        font-size: 55px;
        line-height: 0.95;
    }

    .hero-text {
        font-size: 20px;
        max-width: 100%;
    }

    .image-track img {
        width: 260px;
        height: 150px;
    }

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

    .btn {
        width: 90%;
        text-align: center;
        font-size: 18px;
    }

    .page-section,
    .services-alternate,
    .portfolio-showcase,
    .core-values-section {
        width: 100%;
        padding: 35px 20px;
    }

    .about-layout,
    .quote-section,
    .team-section-new,
    .contact-grid,
    .service-inner,
    .service-item.right .service-inner,
    .portfolio-item,
    .portfolio-item.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-layout,
    .quote-section,
    .team-section-new,
    .wide-image {
        padding: 35px 20px;
    }

    .about-menu {
        padding-top: 0;
    }

    .about-content h1,
    .team-content-new h2 {
        font-size: 55px;
    }

    .about-content p,
    .team-content-new p,
    .quote p {
        font-size: 20px;
    }

    .wide-image img {
        height: 260px;
    }

    .team-images-new {
        grid-template-columns: 1fr;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .service-copy {
        padding: 25px;
    }

    .service-copy h2,
    .portfolio-copy h2 {
        font-size: 36px;
    }

    .service-copy p,
    .service-list li,
    .portfolio-copy p,
    .portfolio-copy li {
        font-size: 18px;
    }

    .service-image img,
    .portfolio-media img,
    .portfolio-media video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .cv-a4 {
        width: 90% !important;
        height: auto !important;
        aspect-ratio: 1 / 1.414;
        object-fit: contain !important;
    }

    .contact-panel,
    .contact-form {
        padding: 25px;
    }

    .service-track span {
        font-size: 24px;
    }

    .care-plans-section {
        padding: 40px 20px;
        margin: 60px auto 30px;
    }

    .care-plans-intro h2 {
        font-size: 40px;
    }

    .care-plans-intro .section-copy,
    .care-addons p {
        font-size: 16px;
    }

    .care-plans-grid {
        grid-template-columns: 1fr;
    }

    .care-plan-card {
        padding: 24px 22px;
    }

    .care-addons {
        padding: 22px 16px;
    }

    .comparison-table-section {
        padding: 24px 16px;
        margin: 40px auto 24px;
    }

    .comparison-table-section h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 14px;
    }

    .trust-section {
        padding: 40px 20px;
        margin: 60px auto 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card {
        padding: 24px 20px;
    }

    .trust-card h3 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 15px;
    }

    .final-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .final-cta-banner h2 {
        font-size: 28px;
    }

    .final-cta-banner p {
        font-size: 16px;
        max-width: 100%;
    }

    .final-cta-banner .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .final-cta-banner .cta-buttons .btn {
        width: 100%;
    }
}
