﻿:root {
    --bg: #faf9f6;
    --page: #ffe5d9;
    --surface: rgba(255,107,91,0.08);
    --surface-strong: rgba(255,107,91,0.12);
    --text: #2c2820;
    --muted: #5c5652;
    --accent: #ff6b5b;
    --accent-strong: #ff5849;
    --border: rgba(255,107,91,0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #faf9f6 0%, #ffe5d9 100%);
}

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

a {
    color: var(--accent);
}

a:hover {
    color: var(--accent-strong);
}

button,
input,
textarea {
    font-family: inherit;
}

.page {
    position: relative;
    padding: 110px 0 80px;
}

.site-header {
    position: relative;
    z-index: 999;
}

.navbar {
    margin-bottom: 0;
    border: none;
    background: transparent;
    padding: 1rem 0;
}

.navbar-transparent {
    background: rgba(250,249,246,0.95);
    border-bottom: 1px solid rgba(255,107,91,0.12);
    backdrop-filter: blur(16px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.navbar-brand span {
    color: #ff8c42;
}

.brand-logo {
    width: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    padding: 6px;
}

.navbar-default .navbar-nav > li > a {
    color: var(--text);
    text-transform: uppercase;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.navbar-default .navbar-nav > li > a:hover {
    color: var(--accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #faf9f6 0%, #fff5f0 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-copy {
    max-width: 600px;
}

.eyebrow {
    display: inline-flex;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255,107,91,0.12);
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(3.2rem, 4.5vw, 5.4rem);
    line-height: 1.02;
    margin: 0 0 1rem;
    max-width: 11ch;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.9rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b5b 0%, #ff5849 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(255,107,91,0.2);
}

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,107,91,0.3);
}

.btn-outline:hover {
    background: rgba(255,107,91,0.08);
}

.hero-highlights {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: rgba(255,107,91,0.08);
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-highlights i {
    color: var(--accent);
}

.hero-panel-wrap {
    display: flex;
    justify-content: flex-end;
}

.hero-panel {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    backdrop-filter: none;
}

.hero-panel-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.hero-panel-logo {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255,107,91,0.12);
    display: grid;
    place-items: center;
}

.hero-panel-logo img {
    width: 48px;
}

.hero-panel h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--accent);
}

.hero-panel-body p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stats div {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,107,91,0.08);
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 1.6rem;
    color: var(--accent);
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.95rem;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head span {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: var(--text);
}

.section-head p {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
}

.about-row,
.service-grid,
.tariff-notes-grid,
.benefits-grid,
.contact-grid {
    display: grid;
    gap: 1.6rem;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
}

.about-col {
    width: 100%;
}

.about-text p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 1.3rem;
}

.about-features {
    display: grid;
    gap: 1.4rem;
    position: relative;
    top: 0;
    margin-top: 0;
    align-self: start;
}

@media (max-width: 991px) {
    .about-row {
        grid-template-columns: 1fr;
    }
}.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.45rem;
    border-radius: 24px;
    background: rgba(255,107,91,0.08);
    border: none;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255,107,91,0.12);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.35rem;
}

.feature-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.services {
    background: #fff5f0;
}

.service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,107,91,0.08);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255,107,91,0.15);
}

.service-card i {
    font-size: 1.65rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin: 0 0 0.75rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.tariffs {
    background: transparent;
}

.tariff-intro p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tariff-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.tariff-table th,
.tariff-table td {
    padding: 1.3rem 1.2rem;
    border-bottom: 1px solid rgba(255,107,91,0.12);
}

.tariff-table thead th {
    color: var(--text);
    font-weight: 700;
    text-align: left;
    background: rgba(255,107,91,0.08);
}

.tariff-table tbody tr:hover {
    background: rgba(255,107,91,0.05);
}

.tariff-notes-grid {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    margin-top: 2rem;
}

.tariff-notes p,
.tariff-notes ul {
    color: var(--muted);
    margin: 0;
    line-height: 1.85;
}

.tariff-notes ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.tariff-notes li {
    margin-bottom: 0.8rem;
}

.tariff-download {
    display: flex;
    justify-content: flex-start;
}

.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2.4rem;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255,107,91,0.08);
    border: none;
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 0.85rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,107,91,0.08);
    border: none;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,107,91,0.12);
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.contact-card p,
.contact-card ul {
    color: var(--muted);
    line-height: 1.8;
}

.contact-card ul {
    padding-left: 1rem;
    margin: 1rem 0 0;
}

.contact-card ul li {
    margin-bottom: 0.75rem;
}

.contact-form-card form {
    display: grid;
    gap: 1.2rem;
}

.contact-form-card label {
    display: grid;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid rgba(255,107,91,0.2);
    border-radius: 18px;
    background: rgba(255,107,91,0.05);
    color: var(--text);
    padding: 1rem 1rem;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255,107,91,0.5);
}

.contact-form-card textarea {
    min-height: 160px;
    resize: vertical;
}

.site-footer {
    padding: 2rem 0 2.5rem;
    background: var(--dark);
    border-top: 1px solid rgba(255,107,91,0.2);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(44,40,32,0.7);
    font-size: 0.95rem;
}

.footer-container a {
    color: rgba(44,40,32,0.9);
}

@media (max-width: 991px) {
    .about-row,
    .service-grid,
    .tariff-notes-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-features {
        position: relative;
        width: 100%;
        top: auto;
        transform: none;
        margin-top: 1.2rem;
    }

    .hero-panel-wrap {
        margin-top: 3rem;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page {
        padding: 80px 0 60px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

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

    .hero-row {
        flex-direction: column;
    }

    .hero-copy {
        max-width: 100%;
    }

    .section-head h2 {
        font-size: 2.2rem;
    }
}
