/* =========================================================
   AJVANTIQA TECHNOLOGY
   MAIN WEBSITE STYLE
   =========================================================

   Brand Colors
   Navy : #191852
   Gold : #BE7F03

========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --primary:        #191852;
    --primary-dark:   #11113d;
    --primary-light:  #29286f;

    --gold:           #BE7F03;
    --gold-light:     #d99a18;
    --gold-dark:      #956300;

    --white:          #ffffff;
    --off-white:      #f8f8fc;
    --light-bg:       #f4f5fa;

    --text:           #191852;
    --text-dark:      #11112f;
    --text-muted:     #68687d;
    --text-light:     #9999aa;

    --border:         rgba(25, 24, 82, 0.10);
    --border-light:   rgba(25, 24, 82, 0.06);

    --shadow-sm:  0 5px 20px rgba(25, 24, 82, 0.06);
    --shadow-md:  0 15px 40px rgba(25, 24, 82, 0.09);
    --shadow-lg:  0 25px 70px rgba(25, 24, 82, 0.14);

    --radius-sm:  10px;
    --radius-md:  18px;
    --radius-lg:  28px;
    --radius-xl:  40px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --container:  1240px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

p { margin-top: 0; }

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--primary);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.15;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--white);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.loader-logo img {
    width: 190px;
    display: block;
    animation: logoPulse 1.5s ease-in-out infinite;
}

.preloader-inner > p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

.loader-line {
    width: 120px;
    height: 3px;
    margin: 20px auto 0;
    overflow: hidden;
    background: rgba(190, 127, 3, 0.15);
    border-radius: 20px;
    position: relative;
}

.loader-line::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: loaderMove 1.2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes loaderMove {
    0%   { left: -100%; }
    100% { left:  100%; }
}


/* =========================================================
   SHARED TYPOGRAPHY HELPERS
========================================================= */

/* Eyebrow label */
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin-right: 9px;
    vertical-align: middle;
}

.eyebrow-gold { color: var(--gold-light); }
.eyebrow-gold::before { background: var(--gold-light); }

.gold-text { color: var(--gold); }

/* Section head */
.section-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* Legacy label (used by CTA / contact) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 24px; height: 2px;
    background: var(--gold);
}

.light-label { color: var(--gold-light); }
.light-label::before { background: var(--gold); }

.label-line {
    display: inline-block;
    width: 20px; height: 2px;
    background: currentColor;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn i { font-size: 12px; transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(4px); }

/* Primary (navy) */
.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 10px 30px rgba(25, 24, 82, 0.20);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(25, 24, 82, 0.27);
}

/* Gold */
.btn-gold {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 10px 30px rgba(190, 127, 3, 0.20);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(190, 127, 3, 0.28);
}

/* Gold outline (used in about section) */
.btn-gold-outline {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(190, 127, 3, 0.55);
    background: rgba(190, 127, 3, 0.10);
}
.btn-gold-outline:hover {
    color: var(--white);
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-3px);
}

/* Outline dark (hero) */
.btn-outline-dark {
    color: var(--primary);
    border-color: rgba(25, 24, 82, 0.18);
    background: rgba(255, 255, 255, 0.80);
}
.btn-outline-dark:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

/* Light */
.btn-light {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
}
.btn-light:hover {
    color: var(--gold);
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 860px;
    padding-top: 145px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
}

/* Background grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(25, 24, 82, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 24, 82, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    pointer-events: none;
}

/* Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-blob-one {
    width: 550px; height: 550px;
    right: -100px; top: -80px;
    background: radial-gradient(circle, rgba(190, 127, 3, 0.10), transparent 65%);
}

.hero-blob-two {
    width: 400px; height: 400px;
    left: -120px; bottom: 0;
    background: radial-gradient(circle, rgba(25, 24, 82, 0.07), transparent 65%);
}

/* Hero layout */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 50px;
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
    padding-bottom: 80px;
}

/* ---- Hero Content ---- */
.hero-content { max-width: 600px; }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(190, 127, 3, 0.22);
    border-radius: 50px;
    background: rgba(190, 127, 3, 0.06);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-label-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(190, 127, 3, 0.15);
    flex-shrink: 0;
}

.hero-content h1 {
    font-size: clamp(40px, 4.8vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin-bottom: 22px;
    color: var(--primary);
}

.hero-highlight {
    color: var(--gold);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.hero-trust-item i {
    color: var(--gold);
    font-size: 13px;
}

/* ---- Hero Visual ---- */
.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Laptop mockup */
.laptop-mockup {
    position: relative;
    z-index: 3;
    width: 520px;
    flex-shrink: 0;
    filter: drop-shadow(0 30px 60px rgba(25, 24, 82, 0.22));
}

.laptop-screen {
    width: 100%;
    padding-bottom: 64%;
    position: relative;
    background: linear-gradient(145deg, #191852, #22215e);
    border-radius: 12px 12px 0 0;
    border: 8px solid #2a2970;
    overflow: hidden;
}

.screen-dashboard {
    position: absolute;
    inset: 0;
    padding: 14px 16px;
    overflow: hidden;
}

/* Dashboard inside screen */
.sd-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.sd-title {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sd-donut {
    position: relative;
    width: 55px; height: 55px;
    flex-shrink: 0;
}

.sd-donut svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}

.sd-donut-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BE7F03;
    font-size: 11px;
    font-weight: 800;
}

.sd-stats {
    margin-bottom: 8px;
}

.sd-stat-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sd-stat-val {
    display: block;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    line-height: 1.1;
}

.sd-stat-change {
    font-size: 9px;
    font-weight: 700;
}

.sd-stat-change.positive { color: #5de89e; }

/* Chart inside screen */
.sd-chart {
    position: relative;
    height: 80px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    overflow: hidden;
    padding: 8px;
}

.sd-chart-line {
    position: absolute;
    bottom: 10px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, #5de89e 60%, var(--gold) 100%);
    opacity: 0.6;
}

.sd-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    height: 100%;
}

.sd-chart-bars span {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, rgba(190,127,3,0.6), rgba(93,232,158,0.4));
    min-height: 4px;
}

/* Laptop base */
.laptop-base {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-stand {
    width: 180px; height: 14px;
    background: linear-gradient(180deg, #2a2970, #1f1e60);
    clip-path: trapezoid;
    /* fallback */
    border-bottom: 14px solid #1f1e60;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    height: 0;
    width: 200px;
}

.laptop-foot {
    width: 260px; height: 8px;
    background: linear-gradient(90deg, #2a2970, #3a3988, #2a2970);
    border-radius: 0 0 6px 6px;
}

/* Phone mockup */
.phone-mockup {
    position: absolute;
    z-index: 5;
    right: 20px;
    bottom: 30px;
    width: 120px;
    height: 220px;
    background: linear-gradient(160deg, #191852, #2a2980);
    border-radius: 20px;
    border: 6px solid #2a2970;
    box-shadow: 0 20px 50px rgba(25, 24, 82, 0.35);
    transform: rotate(5deg);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 35px; height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
}

.phone-inner {
    padding: 22px 10px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 7px;
}

.phone-status i { font-size: 7px; margin-left: 2px; }

.phone-card-ui {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-card-ui small {
    color: rgba(255,255,255,0.5);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-card-ui strong {
    color: var(--gold);
    font-size: 16px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    line-height: 1;
}

.phone-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 35px;
    margin-top: auto;
}

.phone-mini-bars span {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, var(--gold), rgba(190,127,3,0.4));
    min-height: 3px;
}

/* Floating stat cards */
.hero-stat-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(25, 24, 82, 0.12);
    animation: floatUpDown 5s ease-in-out infinite;
}

.hero-stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
}

.hero-stat-card small {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
    margin-top: 1px;
}

.hero-stat-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(190,127,3,0.10);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-stat-one { top: 60px; left: -10px; }
.hero-stat-two { top: 150px; right: 10px; animation-delay: 1.5s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}


/* =========================================================
   TRUSTED BAR
========================================================= */

.trusted-bar {
    background: var(--primary);
    padding: 30px 0;
}

.trusted-bar-label {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.70);
    font-size: 17px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    transition: var(--transition);
    white-space: nowrap;
}

.trusted-logo i { font-size: 22px; }

.trusted-logo:hover { color: var(--white); }

.tl-wordmark {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.oracle-mark { letter-spacing: 1px; }
.ibm-mark { font-size: 20px; letter-spacing: 2px; }
.intel-mark { font-size: 17px; font-style: italic; letter-spacing: 0; }


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    padding: 110px 0 90px;
    background: var(--off-white);
}

/* 6-column tech grid */
.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 55px;
}

/* Service card */
.svc-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 20px 22px;
    transition: var(--transition);
    overflow: hidden;
}

.svc-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-7px);
    border-color: rgba(190,127,3,0.25);
    box-shadow: var(--shadow-md);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

/* Icon colour variants */
.navy-bg   { background: rgba(25,24,82,0.09);   color: var(--primary); }
.gold-bg   { background: rgba(190,127,3,0.10);  color: var(--gold); }
.blue-bg   { background: rgba(30,100,220,0.10); color: #1e64dc; }
.orange-bg { background: rgba(230,100,20,0.10); color: #e66414; }
.purple-bg { background: rgba(130,50,200,0.10); color: #8232c8; }
.teal-bg   { background: rgba(10,170,160,0.10); color: #0aaaa0; }

.svc-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
    line-height: 1.3;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.svc-link i { color: var(--gold); font-size: 10px; transition: transform 0.3s ease; }
.svc-link:hover { color: var(--gold); }
.svc-link:hover i { transform: translateX(4px); }

/* DM divider */
.dm-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dm-divider::before,
.dm-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* 8-column DM row */
.dm-services-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.dm-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 16px 18px;
    text-align: center;
    transition: var(--transition);
}

.dm-item:hover {
    transform: translateY(-5px);
    border-color: rgba(190,127,3,0.30);
    box-shadow: var(--shadow-sm);
}

.dm-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(190,127,3,0.09);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 14px;
}

.dm-item h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.3;
}

.dm-item p {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   ABOUT / IMPACT SECTION
========================================================= */

.about-impact {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #10103d, #191852, #1e1d6a);
    color: var(--white);
}

/* Background grid */
.ai-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Layout */
.ai-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.85fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.ai-content h2 {
    color: var(--white);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 20px;
}

.ai-content > p {
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 460px;
}

/* Checklist */
.ai-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.ai-check-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ai-check-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 600;
}

.ai-check-item i { color: var(--gold); font-size: 13px; }

/* Stats */
.ai-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ai-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-stat-card:hover {
    border-color: rgba(190,127,3,0.40);
    background: rgba(190,127,3,0.07);
    transform: translateY(-4px);
}

.ai-stat-card > i {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
}

.ai-stat-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
}

.ai-stat-card p {
    margin: 8px 0 0;
    color: rgba(255,255,255,0.50);
    font-size: 11px;
    line-height: 1.4;
}

/* Logo visual */
.ai-logo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.ai-logo-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(190,127,3,0.20);
    animation: rotateSlow linear infinite;
}

.ai-ring-one {
    width: 280px; height: 280px;
    animation-duration: 18s;
}

.ai-ring-two {
    width: 210px; height: 210px;
    border-color: rgba(255,255,255,0.08);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ai-ring-three {
    width: 150px; height: 150px;
    border-color: rgba(190,127,3,0.12);
    animation-duration: 8s;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ai-logo-center {
    position: relative;
    z-index: 2;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(190,127,3,0.20);
}

.ai-logo-center img {
    width: 90px;
    filter: brightness(0) invert(1);
}


/* =========================================================
   PORTFOLIO SECTION
========================================================= */

.portfolio-section {
    padding: 110px 0;
    background: var(--white);
}

/* Top row: title + controls */
.portfolio-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-top .eyebrow { display: block; }

.portfolio-top h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Controls: filters + arrows */
.portfolio-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Filter buttons */
.port-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.port-filter {
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.port-filter:hover,
.port-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Prev / next arrows */
.port-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.port-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.port-arrow:hover,
.port-arrow.active-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Portfolio grid */
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Portfolio card */
.port-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.port-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: rgba(190,127,3,0.20);
}

/* Card image area */
.port-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port-img-blue  { background: linear-gradient(135deg, #1a3a8f, #2a5ed8); }
.port-img-dark  { background: linear-gradient(135deg, #191852, #29286f); }
.port-img-navy  { background: linear-gradient(135deg, #0f1540, #1a2580); }

/* Inner icon/label */
.port-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.port-img-inner i {
    font-size: 45px;
    color: rgba(255,255,255,0.80);
    filter: drop-shadow(0 0 14px rgba(190,127,3,0.35));
}

.port-tag {
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Overlay (mockup) */
.port-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.port-card:hover .port-img-overlay { opacity: 1; }

/* Mini browser mockup */
.port-mini-browser {
    width: 130px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 7px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.pmb-bar {
    display: flex;
    gap: 4px;
    padding: 5px 8px;
    background: rgba(0,0,0,0.20);
}

.pmb-bar span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
}

.pmb-content {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pmb-line {
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.30);
}

.pmb-line.short { width: 60%; }

.pmb-cols {
    display: flex;
    gap: 4px;
    margin-top: 3px;
}

.pmb-cols div {
    flex: 1; height: 20px;
    border-radius: 3px;
    background: rgba(190,127,3,0.40);
}

/* Mini phone mockup */
.port-mini-phone {
    width: 70px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 10px;
    padding: 10px 6px 8px;
}

.pmp-notch {
    width: 22px; height: 3px;
    background: rgba(255,255,255,0.30);
    border-radius: 10px;
    margin: 0 auto 6px;
}

.pmp-screen { display: flex; flex-direction: column; gap: 4px; }

.pmp-line {
    height: 3px;
    border-radius: 3px;
    background: rgba(255,255,255,0.30);
}

.pmp-line.short { width: 55%; }

.pmp-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    margin-top: 3px;
}

.pmp-bars div {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, var(--gold), rgba(190,127,3,0.3));
    min-height: 3px;
}

/* Mini dashboard mockup */
.port-mini-dashboard {
    width: 120px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 8px;
    padding: 8px;
}

.pmd-header {
    display: flex;
    gap: 5px;
    margin-bottom: 6px;
}

.pmd-header span {
    flex: 1; height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.25);
}

.pmd-body {}

.pmd-line {
    height: 3px; width: 70%;
    border-radius: 3px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 6px;
}

.pmd-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
}

.pmd-bars div {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, rgba(190,127,3,0.8), rgba(93,232,158,0.5));
    min-height: 3px;
}

/* Card body */
.port-body {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.port-cat {
    display: block;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.port-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.port-body p {
    color: var(--text-muted);
    font-size: 11px;
    margin: 0;
    line-height: 1.5;
}

/* Arrow button */
.port-arrow-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    text-decoration: none;
    transition: var(--transition);
}

.port-arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(8deg);
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    padding: 110px 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    position: relative;
    padding: 30px;
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(190,127,3,0.25);
    box-shadow: var(--shadow-md);
}

.why-number {
    position: absolute;
    top: 16px; right: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: rgba(25,24,82,0.05);
    line-height: 1;
}

.why-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(190,127,3,0.09);
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 22px;
}

.why-card h3 { font-size: 17px; margin-bottom: 11px; }

.why-card p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.75;
    margin: 0;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 110px 0;
    background: var(--white);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 30px; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190,127,3,0.30), transparent);
    pointer-events: none;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(190,127,3,0.30);
    background: var(--white);
    color: var(--gold);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px var(--white);
}

.process-step > i {
    display: block;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
}

.process-step h3 { font-size: 16px; margin-bottom: 9px; }

.process-step p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    padding: 110px 0;
    background: var(--off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 13px;
}

.testimonial-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(25,24,82,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 11px;
    color: var(--text-muted);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #11113f, var(--primary));
}

.cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    right: -180px; top: -250px;
    border: 1px solid rgba(190,127,3,0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px  rgba(190,127,3,0.022),
        0 0 0 160px rgba(190,127,3,0.015);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.cta-content h2 span { color: var(--gold); }

.cta-content p {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 30px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 110px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.contact-info h2 .gold-text { color: var(--gold); }

.contact-info > p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(190,127,3,0.09);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span,
.contact-item small {
    display: block;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item strong {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* Social row */
.contact-social {
    display: flex;
    gap: 9px;
}

.contact-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact form */
.contact-form-wrapper {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(25,24,82,0.10);
    border-radius: 10px;
    outline: none;
    color: var(--primary);
    background: #fafafd;
    font-size: 13px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaaabd; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(190,127,3,0.07);
}

.form-group textarea { resize: vertical; min-height: 125px; }

.form-submit { width: 100%; border: none; }


/* =========================================================
   BLOG
========================================================= */

.blog-section {
    padding: 110px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary), #29286f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: rgba(255,255,255,0.75);
}

.blog-content { padding: 22px; }

.blog-content > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 9px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.blog-content a i { color: var(--gold); font-size: 10px; transition: transform 0.3s ease; }
.blog-content a:hover { color: var(--gold); }
.blog-content a:hover i { transform: translateX(4px); }


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 70px;
    background: #10103b;
    color: rgba(255,255,255,0.55);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 15px;
    border-radius: 10px;
    background: var(--white);
}

.footer-logo img { width: 160px; display: block; }

.footer-brand > p {
    max-width: 340px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px; height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column li { margin-bottom: 10px; }

.footer-column a {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.30);
    font-size: 10px;
}

.footer-bottom > div { display: flex; gap: 20px; }

.footer-bottom a {
    color: rgba(255,255,255,0.30);
    font-size: 10px;
    text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px; bottom: 25px;
    z-index: 900;
    width: 44px; height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(25,24,82,0.20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}


/* =========================================================
   SELECTION / SCROLLBAR
========================================================= */

::selection { color: var(--white); background: var(--gold); }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f2f2f7; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }


/* =========================================================
   SCROLL ANIMATIONS
========================================================= */

.reveal,
.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal,
.fade-up { transform: translateY(36px); }
.fade-left  { transform: translateX(-36px); }
.fade-right { transform: translateX(36px); }

.reveal.visible,
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================
   UTILITY
========================================================= */

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Header scroll */
.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(25,24,82,0.10);
}

/* Form loading */
button.loading { pointer-events: none; }


/* =========================================================
   PAGE HERO  (inner pages)
========================================================= */

.page-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(circle at 80% 40%, rgba(190,127,3,0.08), transparent 30%),
        radial-gradient(circle at 10% 60%, rgba(25,24,82,0.07), transparent 30%),
        var(--off-white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(25,24,82,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,24,82,0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 750px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 580px;
    margin-bottom: 24px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb i {
    color: var(--text-light);
    font-size: 9px;
}

.breadcrumb span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ABOUT INTRO GRID  (about.html, project-details.html)
========================================================= */

.about-intro-section {
    padding: 110px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.about-checks span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.about-checks i { color: var(--gold); font-size: 13px; }

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .about-intro-section { padding: 70px 0; }
    .about-checks { grid-template-columns: 1fr; }
}


/* =========================================================
   LEGAL CONTENT  (privacy-policy.html, terms.html)
========================================================= */

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-block p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul {
    margin: 12px 0 14px 20px;
    list-style: disc;
}

.legal-block li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 6px;
}

.legal-block a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.legal-block a:hover { text-decoration: underline; }


/* =========================================================
   CONTACT FORM FEEDBACK  (injected by contact.js)
========================================================= */

.form-feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    animation: fadeInUp 0.4s ease both;
}

.form-feedback--success {
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.25);
    color: #15803d;
}

.form-feedback--error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.20);
    color: #b91c1c;
}

.form-feedback i { font-size: 15px; flex-shrink: 0; }

/* Field error state */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.06);
}
