:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF8F5;
    --bg-tertiary: #F3F0EB;
    --bg-dark: #1B4B43;
    --text-primary: #1B4B43;
    --text-secondary: #5A6B68;
    --text-muted: #8A9492;
    --accent: #E07A4C;
    --accent-hover: #D16A3C;
    --green: #1B4B43;
    --border: rgba(27, 75, 67, 0.08);
    --border-light: rgba(27, 75, 67, 0.12);
    --shadow: 0 2px 40px rgba(27, 75, 67, 0.06);
    --shadow-lg: 0 24px 80px rgba(27, 75, 67, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--bg-dark);
    color: #fff;
}

::-moz-selection {
    background: var(--bg-dark);
    color: #fff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-links:hover .nav-underline,
.nav-links.has-active .nav-underline {
    opacity: 1;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

.nav-cta {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    background: var(--accent);
    border-radius: 100px;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 56px;
}

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 76, 0.3);
}

.btn-secondary {
    background: var(--bg-dark);
    color: #fff;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-full {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    max-width: 1000px;
    animation: fadeInUp 1s ease 0.3s both;
}

.dashboard-preview {
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    padding: 14px 20px;
    background: #164039;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:first-child { background: #ff5f56; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #27ca40; }

.preview-tabs {
    display: flex;
    gap: 4px;
    margin-left: 24px;
}

.preview-tab {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    padding: 6px 14px;
    border-radius: 6px;
    background: transparent;
}

.preview-tab.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.preview-content {
    display: flex;
    min-height: 400px;
}

.preview-sidebar {
    width: 200px;
    background: #153830;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.preview-main {
    flex: 1;
    padding: 28px;
    background: #1B4B43;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
}

.preview-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.preview-card.balance {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: block;
}

.card-value {
    font-family: 'DM Mono', monospace;
    font-size: 2.25rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
}

.card-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
}

.card-trend.positive {
    color: var(--accent);
}

.preview-graph {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.08);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.graph-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.graph-tabs {
    display: flex;
    gap: 4px;
}

.graph-tab {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    padding: 5px 12px;
    border-radius: 4px;
    background: transparent;
}

.graph-tab.active {
    color: var(--bg-dark);
    background: var(--accent);
}

.graph-line {
    width: 100%;
    height: 140px;
}

.graph-area {
    opacity: 0;
    animation: fadeInArea 1s ease-out forwards;
    animation-delay: 1.8s;
}

.graph-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawGraph 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes drawGraph {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInArea {
    to { opacity: 1; }
}

.preview-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accounts-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.accounts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.accounts-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.account-row:last-child {
    border-bottom: none;
}

.account-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8125rem;
    color: #fff;
}

.account-icon.green { background: var(--accent); }
.account-icon.blue { background: rgba(255,255,255,0.2); color: #fff; }
.account-icon.purple { background: #7C9A92; }

.account-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
}

.account-right {
    text-align: right;
}

.account-value {
    font-family: 'DM Mono', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.account-change {
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 2px;
}

/* Trust badges */
.trust-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.badge-source {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.rating-stars {
    color: var(--accent);
    font-size: 0.875rem;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    text-align: left;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-light);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--bg-dark);
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.features-content h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.02em;
}

.features-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.check-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.features-visual {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.visual-card {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.visual-card:last-child {
    margin-bottom: 0;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.visual-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
}

.visual-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 100px;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    animation: progressGrow 2s ease-out;
}

@keyframes progressGrow {
    from { width: 0; }
}

.progress-fill.blue { background: rgba(255,255,255,0.6); }
.progress-fill.green { background: var(--accent); }
.progress-fill.yellow { background: #7C9A92; }

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(27, 75, 67, 0.03);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA */
.cta {
    padding: 140px 0;
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.perk-check {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-container {
    background: #fff;
    border-radius: 24px;
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--text-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 75, 67, 0.06);
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.contact-form.hidden {
    display: none;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 28px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-dark);
    color: #fff;
}

.footer-simple {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.footer-brand:hover {
    transform: scale(1.08);
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .preview-main {
        grid-template-columns: 1fr;
    }
    
    .preview-right {
        display: none;
    }
    
    
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-perks {
        align-items: center;
    }
    
    .preview-sidebar {
        display: none;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .services, .features, .testimonials, .faq, .contact {
        padding: 80px 0;
    }
    
    .cta {
        padding: 100px 0;
    }
}
