:root {
    --primary: #FE7E58;
    --primary-hover: #e8673f;
    --accent: #ec4899;
    --bg-dark: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* ─── Navbar ─────────────────────────────── */
.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.nav-link {
    display: block;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.07);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    border-radius: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 700px) {
    .burger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.97);
        border-bottom: 1px solid var(--glass-border);
        padding: 0.5rem 1rem 1rem;
        gap: 0.25rem;
    }

    .nav-links.open {
        display: flex;
    }
}

/* Animated Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #0ea5e9;
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(50px) scale(1.1);
    }
}

/* Layout */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ─── Hero Header (outside glass) ────────── */
.hero-header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
    padding: 0.5rem 0;
}

.hero-header h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.hero-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
}

/* Search Section */
.search-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
    }
}

input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

button:active {
    transform: scale(0.98);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
}

/* Loading State */
#loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Results Section */
.analyzed-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.providers-list {
    color: var(--accent);
    font-weight: 600;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tariff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, background 0.3s;
}

.tariff-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Provider row with icon */
.tariff-provider-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.provider-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.tariff-provider {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.tariff-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.tariff-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tariff-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1;
    white-space: pre-line;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.more-providers {
    margin-top: 2rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
}

.w-100 {
    width: 100%;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s;
}

.modal.hidden .modal-content {
    transform: scale(0.9);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.close-btn:hover {
    color: white;
}

.modal h2 {
    margin-bottom: 0.5rem;
}

.modal-tariff-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-input-group {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.error-text {
    color: #ef4444;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    z-index: 2000;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 1;
}

.toast.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── TOP Tariffs Section ────────────────── */
.top-tariffs-section {
    padding: 1rem 0 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.top-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.top-tariff-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.top-tariff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Featured card */
.top-tariff-card--featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--glass-shadow);
}

.top-tariff-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 126, 88, 0.08), transparent 60%);
    pointer-events: none;
}

/* Badge */
.top-tariff-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    align-self: flex-start;
}

.top-tariff-badge--hot {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 2px 12px rgba(254, 126, 88, 0.4);
}

/* Provider row with icon */
.top-tariff-provider-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-provider-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.top-tariff-provider-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Promo label */
.top-tariff-promo {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0.85;
    margin-top: -0.25rem;
}

/* Name & price */
.top-tariff-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.top-tariff-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Features list */
.top-tariff-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.top-tariff-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
}

.top-tariff-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Coverage check button */
.btn-check-coverage {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    transition: background 0.25s, transform 0.2s;
    margin-top: auto;
}

.btn-check-coverage:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.btn-check-coverage--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(254, 126, 88, 0.35);
}

.btn-check-coverage--primary:hover {
    opacity: 0.92;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .top-tariffs-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Telegram Bot Section ───────────────── */
.tg-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tg-icon-wrap {
    flex-shrink: 0;
}

.tg-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.35);
    display: block;
}

.tg-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.tg-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.tg-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 4px 16px rgba(42, 171, 238, 0.4);
    transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-tg:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.5);
}

.btn-tg-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .tg-section {
        flex-direction: column;
        text-align: center;
    }

    .btn-tg {
        align-self: center;
    }
}

/* ─── Providers Section ──────────────────── */
.providers-section {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.provider-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.provider-card-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
}

.provider-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.25s;
}

.provider-card:hover .provider-card-name {
    color: var(--text-main);
}

@media (max-width: 480px) {
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── How it works Section ───────────────── */
.how-it-works-section {
    padding: 1rem 0 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 126, 88, 0.15), rgba(236, 72, 153, 0.15));
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 700;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Blog Section ───────────────────────── */
.blog-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 126, 88, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(254, 126, 88, 0.3);
}

.blog-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(254, 126, 88, 0.15), rgba(236, 72, 153, 0.15));
    color: var(--primary);
    flex-shrink: 0;
}

.blog-card-icon svg {
    width: 24px;
    height: 24px;
}

.blog-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
}

.blog-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.25s, letter-spacing 0.25s;
    margin-top: auto;
}

.blog-card:hover .blog-card-link {
    color: var(--accent);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .blog-card-icon {
        width: 44px;
        height: 44px;
    }

    .blog-card-tag {
        align-self: center;
    }

    .blog-card-title {
        width: 100%;
    }

    .blog-card-desc {
        width: 100%;
    }
}

/* ─── Footer Section ─────────────────────── */
.footer-section {
    width: 100%;
    margin-top: 3rem;
    padding-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.footer-container {
    padding-top: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.footer-info {
    flex: 1;
    min-width: 280px;
}

.footer-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-form-wrapper {
    flex: 1;
    min-width: 280px;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .input-group {
    margin-bottom: 1rem;
    width: 100%;
}

textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
    outline: none;
    resize: vertical;
    transition: border-color 0.3s, background 0.3s;
}

textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}