/* =========================================================
   HawraarTech Software Solutions
   Professional Company Website Styles
   File: public_html/assets/css/style.css
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #0f172a;
    --primary-soft: #1e293b;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --green: #22c55e;
    --green-dark: #16a34a;
    --light: #f8fafc;
    --light-2: #eef6ff;
    --text: #334155;
    --muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 22px 55px rgba(37, 99, 235, 0.16);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --container: 1200px;
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.95;
}

.logo-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    position: relative;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--blue);
}

.site-nav a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transition: var(--transition);
}

.site-nav a:not(.btn-nav):hover::after,
.site-nav a:not(.btn-nav).active::after {
    width: 100%;
}

.btn-nav,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav,
.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white) !important;
    padding: 13px 22px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.btn-nav:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.btn-secondary {
    padding: 13px 22px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.25);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--primary);
    font-size: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at left bottom, rgba(34, 197, 94, 0.08), transparent 28%),
        linear-gradient(180deg, var(--light-2) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: var(--blue-dark);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hero-text h1 {
    margin: 0 0 20px;
    color: var(--primary);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.hero-text h1 span {
    color: var(--blue);
}

.hero-text p {
    max-width: 700px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-mini-stats div {
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
}

.hero-mini-stats strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-mini-stats span {
    color: var(--muted);
    font-size: 14px;
}

.hero-card-wrap {
    position: relative;
}

.hero-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-main-card {
    padding: 22px;
}

.hero-card-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-dot:nth-child(1) {
    background: #ef4444;
}

.hero-dot:nth-child(2) {
    background: #f59e0b;
}

.hero-dot:nth-child(3) {
    background: #22c55e;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.hero-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-logo-fallback {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
}

.hero-brand h3 {
    margin: 0 0 6px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.hero-brand p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-feature-list {
    display: grid;
    gap: 12px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--light);
}

.hero-feature-item i {
    color: var(--green-dark);
    font-size: 18px;
}

.hero-feature-item span {
    color: var(--primary-soft);
    font-weight: 700;
}

.hero-floating-card {
    position: absolute;
    right: -18px;
    bottom: -22px;
    width: 230px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero-floating-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
}

.hero-floating-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   TRUSTED STRIP
   ========================================================= */

.trusted-section {
    padding-top: 10px;
    padding-bottom: 0;
}

.trusted-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trusted-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 78px;
    padding: 18px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    color: var(--primary);
}

.trusted-item i {
    color: var(--blue);
    font-size: 22px;
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-head span {
    display: inline-block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.section-head h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.empty-state {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
}

.empty-state h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 24px;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
    height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card .icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.12));
    color: var(--blue);
    font-size: 26px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
}

/* =========================================================
   PROJECT CARDS
   ========================================================= */

.project-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.project-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e0f2fe, #d1fae5);
    color: var(--blue);
    font-size: 52px;
}

.project-body {
    padding: 24px;
}

.project-body small {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.project-body h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.2;
}

.project-body p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15.5px;
}

.project-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.project-actions a {
    color: var(--blue);
    font-weight: 800;
}

.project-actions a:hover {
    color: var(--green-dark);
}

.project-coming-soon {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-box {
    height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-box i {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 18px;
    font-size: 26px;
    color: var(--blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(34, 197, 94, 0.10));
}

.why-box h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 22px;
}

.why-box p {
    margin: 0;
    color: var(--muted);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.quote-icon {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 28px;
}

.testimonial-card p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 15.5px;
}

.testimonial-card h4 {
    margin: 0 0 4px;
    color: var(--primary);
    font-size: 19px;
}

.testimonial-card small {
    color: var(--muted);
    font-weight: 700;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding-top: 20px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 42px;
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-dark), var(--green));
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.cta-box p {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 90px;
    background: var(--primary);
    color: #cbd5e1;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 28px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: var(--white);
    font-weight: 800;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a {
    color: #cbd5e1;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

/* =========================================================
   UTILITIES
   ========================================================= */

.text-center {
    text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-wrap {
        max-width: 700px;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .trusted-box,
    .card-grid,
    .why-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-wrap {
        min-height: 80px;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .logo-mark {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .logo-text strong {
        font-size: 22px;
    }

    .logo-text small {
        font-size: 12px;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 15px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-text p,
    .section-head p,
    .cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav-wrap {
        gap: 14px;
    }

    .logo-image {
        width: 52px;
        height: 52px;
    }

    .logo-mark {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 14px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text small {
        font-size: 10.5px;
        margin-top: 2px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 86px;
        right: 4%;
        width: min(280px, 92vw);
        padding: 18px;
        border-radius: 18px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .site-nav.show {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        font-size: 16px;
    }

    .site-nav a:not(.btn-nav)::after {
        display: none;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-mini-stats,
    .trusted-box,
    .card-grid,
    .why-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .site-footer {
        padding-top: 70px;
    }

    .section {
        padding-bottom: 70px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .hero-main-card,
    .service-card,
    .why-box,
    .testimonial-card,
    .empty-state {
        padding: 22px;
    }

    .project-body {
        padding: 20px;
    }

    .cta-box {
        padding: 28px 22px;
        border-radius: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        margin-top: 70px;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .nav-wrap {
        min-height: 74px;
        padding: 10px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo-image {
        width: 46px;
        height: 46px;
    }

    .logo-mark {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .hero-text p,
    .section-head p,
    .project-body p,
    .testimonial-card p,
    .cta-box p {
        font-size: 15px;
    }

    .hero-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-logo,
    .hero-logo-fallback {
        width: 72px;
        height: 72px;
    }

    .hero-feature-item {
        align-items: flex-start;
    }

    .site-nav {
        top: 78px;
    }
}
/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.alert {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.info-box i {
    font-size: 22px;
    color: var(--blue);
}

.info-box.whatsapp a {
    color: #22c55e;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ABOUT PAGE ================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 30px;
}

.about-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 24px;
}

.about-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.about-feature-box {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-feature-box i {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 18px;
    font-size: 26px;
    color: var(--blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(34, 197, 94, 0.10));
}

.about-feature-box h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 22px;
}

.about-feature-box p {
    margin: 0;
    color: var(--muted);
}

.about-wide-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-wide-card h2 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 32px;
    line-height: 1.2;
}

.about-wide-card p {
    margin: 0;
    color: var(--muted);
}

.about-points {
    display: grid;
    gap: 14px;
}

.about-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--light);
}

.about-point i {
    color: var(--green-dark);
    font-size: 18px;
    margin-top: 2px;
}

.about-point span {
    color: var(--primary-soft);
    font-weight: 700;
}

/* ================= SERVICES PAGE ================= */

.services-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 34px;
}

.services-extra-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.services-extra-card h3 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 24px;
}

.services-extra-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-extra-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 600;
}

.services-extra-card li:last-child {
    margin-bottom: 0;
}

.services-extra-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
}

/* ================= RESPONSIVE EXTRA ================= */

@media (max-width: 992px) {
    .about-grid,
    .about-feature-grid,
    .services-extra-grid,
    .about-wide-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-card,
    .about-feature-box,
    .services-extra-card,
    .about-wide-card {
        padding: 22px;
    }

    .about-wide-card h2 {
        font-size: 26px;
    }
}