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

body {
    font-family: 'Inter', sans-serif;
    background: #f5fafc;
    color: #2c4a5c;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    text-align: center;
    padding: 48px 0 32px;
}

.logo {
    max-width: 130px;
    height: auto;
    margin-bottom: 16px;
}

.brand {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #2c4a5c;
    margin-bottom: 6px;
}

.tagline {
    font-size: 0.85rem;
    color: #7ab3c8;
    margin-bottom: 10px;
}

.location {
    font-size: 0.8rem;
    color: #9bbec9;
    margin-bottom: 16px;
}

.location i {
    margin-right: 6px;
}

.description {
    max-width: 560px;
    margin: 0 auto;
    background: #eef5f8;
    padding: 14px 22px;
    border-radius: 28px;
    font-size: 0.9rem;
    color: #4a7a8c;
}

/* Highlight Card */
.highlight-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid #d4e6ed;
}

.highlight-badge {
    background: #e6f0f4;
    color: #5a9eb5;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c4a5c;
}

.highlight-desc {
    color: #6a9aae;
    margin-bottom: 24px;
}

.price-wrapper {
    background: #f0f6f9;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
}

.price-label {
    font-size: 0.8rem;
    color: #7ab3c8;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a9eb5;
}

.price-note {
    font-size: 0.75rem;
    color: #9bbec9;
}

.warning-badge {
    margin-top: 20px;
    background: #fef5e8;
    color: #b86b2c;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #d4e6ed;
    border-radius: 24px;
    padding: 20px 32px;
    text-align: center;
    min-width: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5a9eb5;
}

.stat-stars {
    color: #e8b84a;
    font-size: 1rem;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.7rem;
    color: #9bbec9;
    margin-top: 6px;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0;
}

.btn {
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #7ab3c8;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #5a9eb5;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #c8dde5;
    color: #5a7e8c;
}

.btn-secondary:hover {
    border-color: #7ab3c8;
    color: #5a9eb5;
    background: #eef5f8;
    transform: translateY(-1px);
}

/* Section */
.section {
    margin: 56px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    border-left: 3px solid #e8b84a;
    padding-left: 16px;
}

.section-header i {
    color: #7ab3c8;
    font-size: 1.2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c4a5c;
}

/* Badges */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: #ffffff;
    border: 1px solid #d4e6ed;
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: #5a7e8c;
    transition: all 0.15s;
}

.badge:hover {
    border-color: #7ab3c8;
    background: #eef5f8;
}

/* Package Grid */
.package-grid, .portfolio-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.package-card, .portfolio-card, .process-card {
    background: #ffffff;
    border: 1px solid #d4e6ed;
    border-radius: 24px;
    padding: 24px;
    transition: all 0.2s;
}

.package-card:hover, .portfolio-card:hover, .process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -12px rgba(90, 158, 181, 0.15);
    border-color: #b8d4e0;
}

.package-icon, .portfolio-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #7ab3c8;
}

.package-name, .portfolio-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c4a5c;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5a9eb5;
    margin-bottom: 16px;
}

.package-features {
    list-style: none;
    text-align: left;
}

.package-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #6a8e9e;
}

.package-features i {
    color: #e8b84a;
    width: 18px;
    font-size: 0.75rem;
}

.portfolio-desc {
    font-size: 0.8rem;
    color: #6a8e9e;
    margin: 10px 0 14px;
    line-height: 1.5;
}

.portfolio-link {
    color: #7ab3c8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-link:hover {
    gap: 10px;
    color: #5a9eb5;
}

/* Process */
.process-card {
    text-align: center;
}

.process-number {
    width: 42px;
    height: 42px;
    background: #e6f0f4;
    color: #7ab3c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c4a5c;
}

.process-desc {
    font-size: 0.75rem;
    color: #9bbec9;
}

/* Services List */
.services-list {
    background: #ffffff;
    border: 1px solid #d4e6ed;
    border-radius: 24px;
    padding: 20px 28px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef5f8;
    font-size: 0.85rem;
    color: #5a7e8c;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item i {
    color: #7ab3c8;
    width: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 32px;
    border-top: 1px solid #d4e6ed;
    margin-top: 56px;
    color: #9bbec9;
    font-size: 0.75rem;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #9bbec9;
    text-decoration: none;
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: #7ab3c8;
}

/* Responsive */
@media (max-width: 680px) {
    .container {
        padding: 0 18px;
    }
    .stat-card {
        padding: 14px 20px;
        min-width: 100px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    .package-grid, .portfolio-grid, .process-grid {
        gap: 16px;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}