/*
 * GYSMAP Front Page Styles
 * Design: Corporate · Deep Navy #0A1628 + Orange Accent #FF6B35
 * Pure CSS, no frameworks.
 */

/* =============================================
   ROOT OVERRIDES FOR HOMEPAGE
   ============================================= */
:root {
    /* Brushed steel / silver palette */
    --hp-navy:          #c8cacf;   /* base mid-silver */
    --hp-navy-mid:      #b8babe;   /* slightly darker silver */
    --hp-navy-light:    #d4d6da;   /* lighter silver */
    --hp-navy-card:     #e2e4e7;   /* card background - light silver */
    --hp-orange:        #FF6B35;
    --hp-orange-light:  #FF8C5A;
    --hp-orange-glow:   rgba(255, 107, 53, 0.15);
    --hp-white:         #1a1a1a;   /* dark text on light bg */
    --hp-text-dim:      #3a3d44;   /* mid-dark for secondary text */
    --hp-text-muted:    #5a5f6b;   /* muted text */
    --hp-border:        rgba(80, 85, 100, 0.18);
    --hp-glass:         rgba(200, 202, 207, 0.7);
    --hp-radius-card:   16px;
    --hp-radius-btn:    12px;
    --hp-shadow-orange: 0 8px 32px rgba(255, 107, 53, 0.3);
    --hp-shadow-card:   0 4px 24px rgba(0, 0, 0, 0.12);
    --hp-transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   GLOBAL HOMEPAGE RESETS
   ============================================= */
.front-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.front-page {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--hp-navy);
    color: var(--hp-white);
    overflow-x: hidden;
    line-height: 1.6;
}
.front-page a {
    text-decoration: none;
    color: inherit;
}
.front-page img {
    max-width: 100%;
}
.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hp-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--hp-white);
    margin-bottom: 12px;
}
.hp-section-subtitle {
    font-size: 1rem;
    color: var(--hp-text-dim);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.hp-badge {
    display: inline-block;
    background: var(--hp-orange-glow);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--hp-orange);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Scroll-reveal utility */
.hp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.hp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hp-reveal-delay-1 { transition-delay: 0.1s; }
.hp-reveal-delay-2 { transition-delay: 0.2s; }
.hp-reveal-delay-3 { transition-delay: 0.3s; }
.hp-reveal-delay-4 { transition-delay: 0.4s; }
.hp-reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   GLOBAL HEADER OVERRIDE (homepage only)
   ============================================= */
.front-page #masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(200, 202, 207, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    border-bottom: 1px solid var(--hp-border);
    transition: background var(--hp-transition), border-color var(--hp-transition), box-shadow var(--hp-transition);
}
.front-page #masthead.scrolled {
    background: rgba(185, 187, 192, 0.95);
    border-color: var(--hp-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.front-page .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
.front-page .site-branding {
    flex: 0 0 auto;
}
.front-page .site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.front-page .site-title a {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.front-page .site-title a::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--hp-orange), #FF3D00);
    border-radius: 8px;
    flex-shrink: 0;
}
.front-page .site-description { display: none; }

.front-page .main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}
.front-page .main-navigation ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.front-page .main-navigation ul li a {
    color: #3a3d44;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color var(--hp-transition), background var(--hp-transition);
}
.front-page .main-navigation ul li a:hover {
    color: var(--hp-orange);
    background: rgba(255, 107, 53, 0.08);
}
.front-page .header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.front-page .header-auth-buttons .btn-ghost {
    background: transparent;
    border: 1px solid var(--hp-border);
    color: var(--hp-text-dim);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: var(--hp-radius-btn);
    cursor: pointer;
    transition: all var(--hp-transition);
    font-family: inherit;
}
.front-page .header-auth-buttons .btn-ghost:hover {
    border-color: var(--hp-orange);
    color: var(--hp-orange);
}
.front-page .header-auth-buttons .btn-primary {
    background: var(--hp-orange);
    border: none;
    color: var(--hp-white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: var(--hp-radius-btn);
    cursor: pointer;
    transition: all var(--hp-transition);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}
.front-page .header-auth-buttons .btn-primary:hover {
    background: var(--hp-orange-light);
    transform: translateY(-1px);
    box-shadow: var(--hp-shadow-orange);
}

/* Mobile hamburger */
.hp-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--hp-border);
    color: var(--hp-white);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.hp-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hp-white);
    border-radius: 2px;
    transition: var(--hp-transition);
}

/* =============================================
   HERO SECTION  — açık gümüş tonu
   ============================================= */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: linear-gradient(160deg, #d8dadd 0%, #c8cacf 50%, #bbbdc2 100%);
}

/* Animated silver sheen orbs */
.hp-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: orb-pulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}
.hp-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 182, 190, 0.3) 0%, transparent 70%);
    animation: orb-pulse 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}
@keyframes orb-pulse {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(30px, -30px); }
}

/* Subtle diagonal line pattern overlay */
.hp-hero-grid {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.08) 0px,
        rgba(255,255,255,0.08) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hp-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px 40px;
}
.hp-hero-headline {
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 24px;
}
.hp-hero-headline .accent {
    background: linear-gradient(90deg, var(--hp-orange), #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-subtext {
    font-size: 1.125rem;
    color: #3a3d44;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}
.hp-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hp-orange);
    color: var(--hp-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: var(--hp-radius-btn);
    transition: all var(--hp-transition);
    box-shadow: var(--hp-shadow-orange);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.hp-btn-primary:hover {
    background: var(--hp-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.45);
    color: var(--hp-white);
}
.hp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--hp-white);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--hp-radius-btn);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all var(--hp-transition);
    cursor: pointer;
    font-family: inherit;
}
.hp-btn-secondary:hover {
    border-color: var(--hp-orange);
    color: var(--hp-orange);
    background: var(--hp-orange-glow);
    transform: translateY(-3px);
}
.hp-btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Counters */
.hp-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hp-border);
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}
.hp-counter-item {
    background: #d2d4d8;
    padding: 28px 24px;
    text-align: center;
    transition: background var(--hp-transition);
}
.hp-counter-item:hover {
    background: #c5c7cc;
}
.hp-counter-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--hp-orange);
    line-height: 1;
    display: block;
    letter-spacing: -0.03em;
}
.hp-counter-label {
    font-size: 0.8rem;
    color: var(--hp-text-dim);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* =============================================
   FEATURES SECTION  — daha koyu gümüş
   ============================================= */
.hp-features {
    padding: 100px 0;
    background: linear-gradient(180deg, #b5b7bc 0%, #bdbfc4 100%);
    position: relative;
}
.hp-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hp-orange), transparent);
    opacity: 0.4;
}
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-feature-card {
    background: #dcdee1;
    border: 1px solid rgba(80, 85, 100, 0.15);
    border-radius: var(--hp-radius-card);
    padding: 32px 28px;
    transition: all var(--hp-transition);
    position: relative;
    overflow: hidden;
}
.hp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp-orange), #FF3D00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--hp-transition);
}
.hp-feature-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-card);
}
.hp-feature-card:hover::before {
    transform: scaleX(1);
}
.hp-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--hp-orange-glow);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: all var(--hp-transition);
}
.hp-feature-card:hover .hp-feature-icon {
    background: rgba(255, 107, 53, 0.28);
    transform: scale(1.08);
}
.hp-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-white);
    margin-bottom: 10px;
}
.hp-feature-desc {
    font-size: 0.875rem;
    color: var(--hp-text-dim);
    line-height: 1.65;
}

/* =============================================
   HOW IT WORKS  — açık gümüş tonu
   ============================================= */
.hp-steps {
    padding: 100px 0;
    background: linear-gradient(180deg, #caccce 0%, #d5d7da 100%);
    position: relative;
}
.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.hp-steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.666% + 16px);
    right: calc(16.666% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--hp-orange), rgba(255, 107, 53, 0.3), var(--hp-orange));
    z-index: 0;
}
.hp-step-item {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.hp-step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--hp-orange), #FF3D00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp-white);
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    position: relative;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition);
}
.hp-step-item:hover .hp-step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.55);
}
.hp-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hp-white);
    margin-bottom: 12px;
}
.hp-step-desc {
    font-size: 0.875rem;
    color: var(--hp-text-dim);
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto;
}
.hp-step-arrow {
    position: absolute;
    top: 22px;
    right: -12px;
    color: var(--hp-orange);
    font-size: 1.25rem;
    z-index: 2;
}
.hp-step-item:last-child .hp-step-arrow { display: none; }

/* =============================================
   PACKAGES SECTION  — daha koyu gümüş
   ============================================= */
.hp-packages {
    padding: 100px 0;
    background: linear-gradient(180deg, #b0b2b7 0%, #bcbec3 100%);
    position: relative;
}
.hp-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hp-border), transparent);
}
.hp-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.hp-package-card {
    background: #dcdee1;
    border: 1px solid rgba(80, 85, 100, 0.15);
    border-radius: var(--hp-radius-card);
    padding: 24px;
    transition: all var(--hp-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hp-package-card.featured {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(160deg, var(--hp-navy-card), rgba(255, 107, 53, 0.06));
}
.hp-package-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--hp-orange);
    color: var(--hp-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.hp-package-card:hover {
    border-color: rgba(255, 107, 53, 0.35);
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-card);
}
.hp-package-thumbnail {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--hp-navy-light);
}
.hp-package-thumbnail-placeholder {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--hp-navy-light), var(--hp-navy));
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 1px solid var(--hp-border);
}
.hp-package-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp-white);
    margin-bottom: 10px;
}
.hp-package-desc {
    font-size: 0.875rem;
    color: var(--hp-text-dim);
    line-height: 1.65;
    margin-bottom: 24px;
    min-height: 54px;
}
.hp-package-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.hp-package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp-orange);
}
.hp-package-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp-orange);
}
.hp-package-duration {
    font-size: 0.8rem;
    color: var(--hp-text-muted);
    margin-bottom: 24px;
}

/* WooCommerce add-to-cart button override */
.hp-package-card .single_add_to_cart_button,
.hp-package-card .add_to_cart_button,
.hp-package-card .hp-cart-btn {
    display: block;
    width: 100%;
    background: var(--hp-orange);
    color: var(--hp-white);
    border: none;
    padding: 13px 24px;
    border-radius: var(--hp-radius-btn);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: all var(--hp-transition);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.hp-package-card .single_add_to_cart_button:hover,
.hp-package-card .add_to_cart_button:hover,
.hp-package-card .hp-cart-btn:hover {
    background: var(--hp-orange-light);
    box-shadow: var(--hp-shadow-orange);
    transform: translateY(-2px);
}
.hp-packages-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    background: var(--hp-navy-card);
    border-radius: var(--hp-radius-card);
    border: 1px solid var(--hp-border);
}
.hp-packages-empty p {
    color: var(--hp-text-dim);
    font-size: 1rem;
}

/* =============================================
   FAQ SECTION  — açık gümüş
   ============================================= */
.hp-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #c5c7cb 0%, #cdcfd3 100%);
}
.hp-faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.hp-faq-item {
    background: #dcdee1;
    border: 1px solid rgba(80, 85, 100, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--hp-transition);
}
.hp-faq-item.is-open {
    border-color: rgba(255, 107, 53, 0.35);
}
.hp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}
.hp-faq-question-text {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--hp-white);
    flex: 1;
}
.hp-faq-icon {
    width: 28px;
    height: 28px;
    background: var(--hp-orange-glow);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--hp-transition);
    color: var(--hp-orange);
    font-size: 1rem;
    line-height: 1;
}
.hp-faq-item.is-open .hp-faq-icon {
    background: var(--hp-orange);
    border-color: var(--hp-orange);
    color: var(--hp-white);
    transform: rotate(45deg);
}
.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-faq-answer-inner {
    padding: 16px 24px 20px;
    font-size: 0.9rem;
    color: var(--hp-text-dim);
    line-height: 1.75;
    border-top: 1px solid var(--hp-border);
}

/* =============================================
   FOOTER
   ============================================= */
.hp-footer {
    background: #060E1E;
    border-top: 1px solid var(--hp-border);
    padding: 64px 0 32px;
}
.hp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.hp-footer-brand-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--hp-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-footer-brand-name::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--hp-orange), #FF3D00);
    border-radius: 7px;
    flex-shrink: 0;
}
.hp-footer-brand-desc {
    font-size: 0.875rem;
    color: var(--hp-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}
.hp-footer-social {
    display: flex;
    gap: 10px;
}
.hp-footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-text-dim);
    font-size: 1rem;
    transition: all var(--hp-transition);
}
.hp-footer-social a:hover {
    background: var(--hp-orange);
    border-color: var(--hp-orange);
    color: var(--hp-white);
    transform: translateY(-3px);
}
.hp-footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hp-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-footer-links li {
    margin-bottom: 10px;
}
.hp-footer-links a {
    font-size: 0.875rem;
    color: var(--hp-text-muted);
    transition: color var(--hp-transition);
}
.hp-footer-links a:hover {
    color: var(--hp-orange);
}
.hp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--hp-border);
    flex-wrap: wrap;
    gap: 12px;
}
.hp-footer-bottom-text {
    font-size: 0.8rem;
    color: var(--hp-text-muted);
}
.hp-footer-bottom-text a {
    color: var(--hp-orange);
}
.hp-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.hp-footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--hp-text-muted);
    transition: color var(--hp-transition);
}
.hp-footer-bottom-links a:hover {
    color: var(--hp-orange);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .front-page .main-navigation ul { display: none; }
    .hp-nav-toggle { display: flex; }
    .front-page .main-navigation.is-open ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(12px);
        padding: 20px 24px;
        border-bottom: 1px solid var(--hp-border);
        z-index: 999;
        align-items: flex-start;
        gap: 4px;
    }
    .hp-features-grid {
        grid-template-columns: 1fr;
    }
    .hp-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hp-steps-grid::before { display: none; }
    .hp-step-arrow { display: none; }
    .hp-counters {
        grid-template-columns: 1fr;
    }
    .hp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hp-hero-content {
        padding: 60px 16px 40px;
    }
}
@media (max-width: 480px) {
    .hp-packages-grid {
        grid-template-columns: 1fr;
    }
    .hp-btn-primary,
    .hp-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
