* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1E293B;
    scroll-behavior: smooth;
}

section {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* HEADER */

.main-header {
    height: 95px;
    border-bottom: 1px solid #E2E8F0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

    .logo img {
        height: 55px;
    }

.main-menu {
    display: flex;
    gap: 35px;
}

    .main-menu a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        transition: 0.3s;
        position: relative;
    }

        .main-menu a:hover {
            color: #49ab37;
        }

        .main-menu a.active {
            color: #49ab37;
        }

            .main-menu a.active::after {
                content: "";
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 100%;
                height: 3px;
                border-radius: 20px;
                background: #49ab37;
            }

.header-phone {
    background: #49ab37;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */

.hero {
    padding: 80px 0;
    background: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-left {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: #EEF8EC;
    color: #49ab37;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0F172A;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background: #49ab37;
    color: white;
    padding: 18px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    border: 1px solid #CBD5E1;
    color: #334155;
    padding: 18px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 40px;
}

    .hero-features div {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-features strong {
        color: #0F172A;
    }

    .hero-features span {
        color: #64748B;
        font-size: 14px;
    }

.hero-right img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    min-height: 620px;
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
}

    .section-title span {
        color: #49ab37;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 46px;
        margin-top: 18px;
        margin-bottom: 20px;
        color: #0F172A;
    }

    .section-title p {
        color: #64748B;
        font-size: 18px;
        line-height: 1.8;
    }

/* SERVICES */

.services {
    padding: 110px 0;
    background: #F8FAFC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    transition: 0.35s;
    border: 1px solid #E2E8F0;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15,23,42,0.08);
        border-color: #D7EED2;
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #EEF8EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
}

.service-card h3 {
    margin-bottom: 18px;
    color: #0F172A;
    font-size: 24px;
}

.service-card p {
    color: #64748B;
    line-height: 1.8;
}

/* STATS */

.stats {
    padding: 110px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #49ab37 0%, #3cbff0 100%);
    border-radius: 28px;
    padding: 50px 35px;
    text-align: center;
    color: white;
}

    .stat-card h3 {
        font-size: 52px;
        margin-bottom: 18px;
        font-weight: 800;
    }

    .stat-card p {
        font-size: 18px;
        line-height: 1.7;
    }

/* EGE MAP */

.ege-map {
    padding: 120px 0;
    background: #F8FAFC;
}

.ege-map-grid {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    gap: 40px;
    align-items: center;
}

.ege-map-center img {
    width: 100%;
}

.city-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

    .city-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    }

    .city-card h3 {
        color: #49ab37;
        margin-bottom: 12px;
        font-size: 24px;
    }

    .city-card p {
        color: #64748B;
        line-height: 1.7;
    }

/* WHY US */

.why-us {
    padding: 120px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.why-card {
    background: #F8FAFC;
    border-radius: 28px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

.why-number {
    font-size: 70px;
    font-weight: 800;
    color: rgba(73,171,55,0.12);
    position: absolute;
    top: 20px;
    right: 30px;
}

.why-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0F172A;
    position: relative;
    z-index: 2;
}

.why-card p {
    color: #64748B;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

/* CTA */

.cta-section {
    padding: 120px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, #49ab37 0%, #3cbff0 100%);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-content span {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.18);
    padding: 10px 18px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

.cta-content h2 {
    font-size: 56px;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
}

.cta-content p {
    color: rgba(255,255,255,0.92);
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 240px;
}

.cta-primary {
    background: white;
    color: #49ab37;
    padding: 20px 35px;
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.cta-whatsapp {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 20px 35px;
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

/* OFFER PAGE */

.offer-page {
    padding: 120px 0;
    background: #F8FAFC;
}

.offer-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

    .offer-header span {
        color: #49ab37;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
    }

    .offer-header h1 {
        font-size: 58px;
        margin-top: 20px;
        margin-bottom: 20px;
        color: #0F172A;
    }

    .offer-header p {
        font-size: 20px;
        color: #64748B;
        line-height: 1.8;
    }

.offer-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    border: 1px solid #E2E8F0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 12px;
        font-weight: 600;
        color: #334155;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 1px solid #CBD5E1;
        border-radius: 14px;
        padding: 18px;
        font-size: 16px;
        outline: none;
        transition: 0.3s;
        font-family: 'Inter', sans-serif;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #49ab37;
            box-shadow: 0 0 0 4px rgba(73,171,55,0.08);
        }

.full {
    margin-top: 30px;
}

.offer-button {
    margin-top: 35px;
    background: #49ab37;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .offer-button:hover {
        background: #3f972f;
    }

/* FOOTER */

.main-footer {
    background: #0F172A;
    color: white;
    padding-top: 90px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 70px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 30px;
}

.footer-about p {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-whatsapp {
    display: inline-block;
    background: #49ab37;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.main-footer h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.main-footer ul {
    list-style: none;
}

    .main-footer ul li {
        margin-bottom: 16px;
    }

        .main-footer ul li a {
            text-decoration: none;
            color: rgba(255,255,255,0.75);
            transition: 0.3s;
        }

            .main-footer ul li a:hover {
                color: #3cbff0;
            }

.footer-contact li {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.6);
    }

/* RESPONSIVE */

@media(max-width:1200px) {

    .hero-container,
    .ege-map-grid,
    .cta-box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-right {
        order: -1;
    }

    .services-grid,
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .main-header {
        height: auto;
        padding: 20px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 25px;
    }

    .services-grid,
    .stats-grid,
    .why-grid,
    .form-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .ege-map-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 50px 35px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-primary,
    .cta-whatsapp {
        width: 100%;
    }

    .offer-box {
        padding: 35px;
    }

    .offer-header h1 {
        font-size: 40px;
    }

    .hero-right img {
        min-height: auto;
    }
}

@media(max-width:576px) {

    .container {
        width: 92%;
    }

    .logo img {
        height: 42px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .service-card,
    .why-card,
    .city-card {
        padding: 30px;
    }

    .stat-card h3 {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}
.success-message {
    background: #EEF8EC;
    color: #49ab37;
    border: 1px solid #CDE9C8;
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
    transition: 0.3s;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border: 1px solid #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.10);
}

.validation-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.form-group.error .validation-message {
    display: block;
}

.kurumsal-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 100px 0;
}

.kurumsal-sidebar {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 30px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

    .kurumsal-sidebar h3 {
        margin-bottom: 25px;
        color: #0F172A;
        font-size: 24px;
    }

    .kurumsal-sidebar a {
        display: block;
        padding: 14px 18px;
        border-radius: 12px;
        text-decoration: none;
        color: #334155;
        transition: 0.3s;
        margin-bottom: 10px;
        font-weight: 500;
    }

        .kurumsal-sidebar a:hover {
            background: #EEF8EC;
            color: #49ab37;
        }

.kurumsal-content {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 50px;
}

    .kurumsal-content h1 {
        font-size: 42px;
        margin-bottom: 30px;
        color: #0F172A;
    }

    .kurumsal-content p {
        color: #475569;
        line-height: 2;
        margin-bottom: 25px;
        font-size: 17px;
    }

@media(max-width:992px) {

    .kurumsal-layout {
        grid-template-columns: 1fr;
    }

    .kurumsal-sidebar {
        position: relative;
        top: 0;
    }
}
.dropdown {
    position: relative;
}

    .dropdown > a {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    padding: 14px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(15,23,42,0.08);
    z-index: 999;
}

    .dropdown-menu a {
        padding: 12px 14px;
        border-radius: 12px;
        text-decoration: none;
        color: #334155;
        transition: 0.25s;
        font-weight: 500;
    }

        .dropdown-menu a:hover {
            background: #EEF8EC;
            color: #49ab37;
        }

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* =========================
   PAGE BANNER
========================= */

.page-banner {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 50px;
}

.page-banner-content {
    max-width: 700px;
    padding: 60px 0;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .95;
}

/* Mobil */

@media (max-width: 768px) {

    .page-banner {
        min-height: 220px;
    }

        .page-banner h1 {
            font-size: 30px;
        }

        .page-banner p {
            font-size: 16px;
        }
}

/* =========================
   KURUMSAL SAYFALAR
========================= */

.kurumsal-page {
    background: #f8fafc;
}

.kurumsal-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.kurumsal-content {
    flex: 1;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0f172a;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
}

    .content-box p {
        font-size: 17px;
        line-height: 1.9;
        color: #334155;
        margin-bottom: 20px;
    }

/* Mobil */

@media (max-width: 991px) {

    .kurumsal-layout {
        flex-direction: column;
    }

    .page-title {
        font-size: 30px;
    }

    .content-box {
        padding: 25px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
/* =========================
   OPERASYON LİSTE
========================= */

.operation-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.operation-item {
    background: #f8fafc;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    color: #0f172a;
    border-left: 4px solid #49ab37;
}

/* =========================
   KALİTE POLİTİKASI
========================= */

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.quality-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 18px;
    border-top: 4px solid #3cbff0;
}

    .quality-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .quality-card p {
        margin-bottom: 0;
        line-height: 1.8;
    }

@media (max-width: 768px) {

    .quality-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   İŞ GÜVENLİĞİ
========================= */

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.safety-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 18px;
    border-top: 4px solid #49ab37;
}

    .safety-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .safety-card p {
        margin-bottom: 0;
        line-height: 1.8;
    }

@media (max-width: 768px) {

    .safety-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SIDEBAR
========================= */

.kurumsal-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
    position: sticky;
    top: 120px;
}

    .sidebar-box h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #0f172a;
    }

    .sidebar-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-box li {
        margin-bottom: 12px;
    }

    .sidebar-box a {
        display: block;
        padding: 14px 18px;
        border-radius: 12px;
        background: #f8fafc;
        color: #0f172a;
        text-decoration: none;
        transition: .2s;
        font-weight: 500;
    }

        .sidebar-box a:hover {
            background: #49ab37;
            color: white;
        }

@media (max-width: 991px) {

    .kurumsal-sidebar {
        width: 100%;
    }

    .sidebar-box {
        position: static;
    }
}

/* =========================
   HEADER DROPDOWN
========================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

    .dropdown-menu a:hover {
        background: #49ab37;
        color: white;
    }
.sidebar-divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-card {
    background: #f7f9f8;
    border: 1px solid #e1e5e3;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
}

    .contact-card strong {
        color: #0b6b3a;
    }

    .contact-card a {
        color: #0b6b3a;
        text-decoration: none;
        font-weight: 600;
    }

.contact-form-box {
    background: #ffffff;
    border: 1px solid #e1e5e3;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

    .contact-form-box form {
        display: grid;
        gap: 14px;
    }

    .contact-form-box input,
    .contact-form-box select,
    .contact-form-box textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid #d8dedb;
        border-radius: 10px;
        font-size: 15px;
    }

    .contact-form-box textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-form-box button {
        background: #0b6b3a;
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }

        .contact-form-box button:hover {
            background: #084f2b;
        }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #d8dedb;
    outline: none;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border: 2px solid #d10000;
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
    border: 2px solid #16a34a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #d8dedb;
    outline: none;
    transition: 0.3s;
}

    .contact-form input:invalid:not(:placeholder-shown),
    .contact-form select:invalid:not(:placeholder-shown),
    .contact-form textarea:invalid:not(:placeholder-shown) {
        border: 2px solid #d10000 !important;
    }

    .contact-form input:valid:not(:placeholder-shown),
    .contact-form select:valid:not(:placeholder-shown),
    .contact-form textarea:valid:not(:placeholder-shown) {
        border: 2px solid #16a34a !important;
    }


.footer-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    min-width: 240px;
    transition: all 0.3s ease;
}

    .trust-item:hover {
        transform: translateY(-3px);
        border-color: rgba(60,191,240,0.35);
    }

    .trust-item i {
        font-size: 26px;
        color: #3cbff0;
    }

    .trust-item strong {
        display: block;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
    }

    .trust-item span {
        display: block;
        color: rgba(255,255,255,0.70);
        font-size: 13px;
        margin-top: 3px;
    }

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: all .3s ease;
}

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .highlight-card i {
        font-size: 34px;
        color: #3cbff0;
        margin-bottom: 18px;
    }

    .highlight-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .highlight-card p {
        color: #666;
        line-height: 1.7;
    }

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 220px;
    background: linear-gradient(135deg, #49ab37, #3cbff0);
    color: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
}

    .stat-box h2 {
        font-size: 42px;
        margin-bottom: 10px;
        font-weight: 700;
    }

.brand-protection {
    margin-top: 45px;
    background: rgba(60,191,240,0.08);
    border: 1px solid rgba(60,191,240,0.15);
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .brand-protection i {
        font-size: 42px;
        color: #49ab37;
    }

    .brand-protection h4 {
        margin-bottom: 8px;
    }