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

:root {
    --navy: #1e3a5f;
    --navy2: #f0f5fb;
    --navy3: #e8f0f9;
    --accent: #1a56db;
    --accent2: #2563eb;
    --accent-light: #dbeafe;
    --white: #ffffff;
    --gray: #64748b;
    --text: #1e293b;
    --text2: #475569;
    --border: #e2e8f0;
    --border2: #cbd5e1;
    --radius: 14px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(30, 86, 219, 0.06);
    --shadow-md: 0 4px 24px rgba(30, 86, 219, 0.12);
    --shadow-lg: 0 12px 48px rgba(30, 86, 219, 0.16);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6
}

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

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #f1f5f9
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

a {
    text-decoration: none;
    color: inherit
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition)
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.logo-text {
    line-height: 1
}

.logo-text span:first-child {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy)
}

.logo-text span:last-child {
    display: block;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: color 0.2s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s
}

.nav-links a:hover {
    color: var(--accent)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-md)
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: #1546b8 !important;
    transform: translateY(-1px)
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    backdrop-filter: blur(20px)
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-size: 26px;
    font-weight: 700;
    color: var(--text2)
}

.mobile-menu a:hover {
    color: var(--accent)
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 28px;
    line-height: 1
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(145deg, #f8fbff 0%, #eef5ff 50%, #f0f7ff 100%)
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    pointer-events: none
}

.hero-bg, .hero-grid, .hero-glow, .hero-glow2 {
    display: none
}

.hero-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.4;
        transform: scale(1.6)
    }
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--navy)
}

.hero-title .accent {
    color: var(--accent);
    display: block
}

.hero-sub {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s
}

.btn-primary:hover {
    background: #1546b8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent);
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid var(--accent);
    transition: transform 0.2s, background 0.2s, color 0.2s
}

.btn-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-2px)
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2)
}

.trust-ico {
    font-size: 16px
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-card-wrap {
    position: relative;
    width: 100%;
    max-width: 480px
}

.hero-main-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden
}

.hero-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #60a5fa)
}

.card-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px
}

.region-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px;
    margin-bottom: 18px
}

.region-item {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s, border-color 0.2s
}

.region-item:hover {
    background: var(--accent-light);
    border-color: #bfdbfe
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent)
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md)
}

.float-card-1 {
    top: -18px;
    right: -18px;
    animation: float1 4s ease-in-out infinite
}

.float-card-2 {
    bottom: -18px;
    left: -18px;
    animation: float2 4s ease-in-out infinite 2s
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(10px)
    }
}

.float-inner {
    display: flex;
    align-items: center;
    gap: 10px
}

.float-icon {
    width: 34px;
    height: 34px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.float-text span:first-child {
    display: block;
    font-size: 11px;
    color: var(--gray);
    font-weight: 500
}

.float-text span:last-child {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text)
}

section {
    padding: 96px 0
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--navy)
}

.section-sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 560px
}

.text-center {
    text-align: center
}

.text-center .section-sub {
    margin: 0 auto
}

.services {
    background: var(--white)
}

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

.service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition)
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: var(--shadow-lg)
}

.service-card.featured {
    border-color: #bfdbfe;
    background: linear-gradient(145deg, #f0f7ff, #fff)
}

.service-card.featured::after {
    content: 'Popüler';
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px
}

.service-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: background var(--transition), transform var(--transition)
}

.service-card:hover .service-ico {
    background: #dbeafe;
    transform: scale(1.1)
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy)
}

.service-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text2)
}

.service-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0
}

.why-us {
    background: var(--navy2)
}

.why-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    border: 1.5px solid transparent;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition)
}

.feature:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow)
}

.feature-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy)
}

.feature-text p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

.why-image-wrap {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden
}

.why-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #60a5fa)
}

.cert-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.cert-item {
    background: var(--navy2);
    border-radius: 14px;
    padding: 18px;
    border: 1.5px solid var(--border);
    text-align: center;
    transition: border-color 0.3s, background 0.3s
}

.cert-item:hover {
    border-color: #bfdbfe;
    background: var(--accent-light)
}

.cert-ico {
    font-size: 28px;
    margin-bottom: 8px
}

.cert-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy)
}

.cert-desc {
    font-size: 11px;
    color: var(--gray)
}

.acil-card {
    margin-top: 14px;
    background: linear-gradient(135deg, var(--accent-light), #eff6ff);
    border: 1.5px solid #bfdbfe;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px
}

.acil-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px
}

.acil-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5
}

.process {
    background: var(--white)
}

.process-steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), var(--accent), var(--border2), transparent)
}

.step {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s
}

.step:hover .step-num {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: var(--shadow)
}

.step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--navy)
}

.step p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

.testimonials {
    background: var(--navy2);
    overflow: hidden
}

.testi-swiper {
    margin-top: 56px;
    padding-bottom: 56px !important
}

.testi-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s
}

.testi-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md)
}

.stars {
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px
}

.testi-text {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 2px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--accent);
    flex-shrink: 0
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
}

.author-role {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px
}

.swiper-pagination-bullet {
    background: var(--border2)
}

.swiper-pagination-bullet-active {
    background: var(--accent)
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent) !important;
    --swiper-navigation-size: 20px;
    background: #fff;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 1px solid var(--border)
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 900
}

.contact {
    background: var(--white)
}

.contact-inner {
    display: grid;
    grid-template-columns:5fr 7fr;
    gap: 56px;
    align-items: start
}

.contact-info {
    position: sticky;
    top: 100px
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--navy2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.3s
}

.contact-item:hover {
    border-color: #bfdbfe
}

.contact-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-light);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.contact-detail span:first-child {
    display: block;
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px
}

.contact-detail a, .contact-detail span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s
}

.contact-detail a:hover {
    color: var(--accent)
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25)
}

.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35)
}

.wa-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.form-wrap {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden
}

.form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #60a5fa)
}

.form-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy)
}

.form-sub {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 24px
}

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.form-group.full {
    grid-column: span 2
}

label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.8px
}

input, select, textarea {
    background: var(--navy2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 15px;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%
}

input::placeholder, textarea::placeholder {
    color: #94a3b8
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 86, 219, 0.08);
    background: #fff
}

select option {
    background: #fff;
    color: var(--text)
}

textarea {
    resize: vertical;
    min-height: 90px
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-md)
}

.submit-btn:hover {
    background: #1546b8;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg)
}

.alert {
    padding: 13px 17px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b
}

footer {
    background: var(--navy);
    color: #fff;
    padding: 60px 0 0
}

.footer-inner {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 14px
}

.footer-brand .logo-text span:first-child {
    color: #fff
}

.footer-brand .logo-text span:last-child {
    color: #93c5fd
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #93c5fd;
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s
}

.footer-col ul li a:hover {
    color: #fff
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5)
}

.footer-bottom .accent {
    color: #93c5fd
}

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366, #1db954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wapulse 3s ease-in-out infinite
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    animation: none
}

.wa-float svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

@keyframes wapulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4)
    }
    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.07)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1024px) {
    .hero-inner, .why-inner {
        grid-template-columns:1fr;
        gap: 44px
    }

    .hero-visual {
        display: none
    }

    .services-grid {
        grid-template-columns:1fr 1fr
    }

    .process-steps {
        grid-template-columns:1fr 1fr
    }

    .process-steps::before {
        display: none
    }

    .contact-inner {
        grid-template-columns:1fr
    }

    .contact-info {
        position: static
    }

    .footer-inner {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0
    }

    .nav-links {
        display: none
    }

    .menu-btn {
        display: block
    }

    .services-grid {
        grid-template-columns:1fr
    }

    .form-grid {
        grid-template-columns:1fr
    }

    .form-group.full {
        grid-column: span 1
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .hero-trust {
        gap: 14px
    }
}