.elementor-21184 .elementor-element.elementor-element-23e6596{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS *//* ===== ROOT TOKENS ===== */
:root {
    --p1: #6C3FD4;
    --p2: #8B5CF6;
    --p3: #A78BFA;
    --p4: #C4B5FD;
    --p5: #EDE9FE;
    --p6: #F5F3FF;
    --accent: #EC4899;
    --accent2: #F472B6;
    --bg-body: #EEE9FB;
    --bg-section: #E8E2F8;
    --bg-alt: #F0EBFF;
    --bg-white: #FFFFFF;
    --dark: #1E0A4A;
    --text: #2D1B69;
    --muted: #6B7280;
    --card-bg: rgba(255,255,255,0.82);
    --card-border: rgba(140,92,246,0.18);
    --card-shadow: 0 8px 32px rgba(108,63,212,0.10);
    --card-shadow-lg: 0 20px 60px rgba(108,63,212,0.18);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --r: 18px;
    --r-sm: 12px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== NAV BAR ===== */
.navbar {
    width: 100%;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(140,92,246,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #6C3FD4, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--p1); }
.nav-cta {
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(108,63,212,0.3);
}
.nav-cta:hover { box-shadow: 0 8px 24px rgba(108,63,212,0.45) !important; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    padding: 15px 34px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    color: #fff;
    box-shadow: 0 8px 28px rgba(108,63,212,0.38);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(108,63,212,0.52);
    background: linear-gradient(135deg, #7C4FE4, #9B6BFF);
}
.btn-secondary {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.28);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-large { padding: 18px 52px; font-size: 17px; border-radius: 14px; }

/* ===== SECTION HEADINGS ===== */
.section-title {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #5B2EC0, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(108,63,212,0.12), rgba(139,92,246,0.12));
    border: 1px solid rgba(139,92,246,0.3);
    color: var(--p1);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ===== HERO ===== */
.hero {
    width: 100%;
    background: linear-gradient(135deg, #1E0A4A 0%, #3B1E8A 45%, #5B2EC0 80%, #7C3AED 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.hero-orb1 {
    position: absolute; top: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(167,139,250,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-orb2 {
    position: absolute; bottom: -100px; left: -60px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(236,72,153,0.22) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-orb3 {
    position: absolute; top: 40%; left: 40%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    width: 100%;
    padding: 100px 60px;
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167,139,250,0.2);
    border: 1px solid rgba(167,139,250,0.45);
    color: #C4B5FD;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
}
.hero-title {
    font-family: var(--font-head);
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-title span {
    background: linear-gradient(135deg, #C4B5FD, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 19px;
    font-weight: 500;
    color: rgba(255,255,255,0.87);
    margin-bottom: 16px;
    line-height: 1.65;
}
.hero-description {
    font-size: 14px;
    color: rgba(255,255,255,0.52);
    margin-bottom: 40px;
    line-height: 1.9;
    letter-spacing: 0.3px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.45);
    display: block;
    border: 2px solid rgba(167,139,250,0.25);
}
.hero-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(139,92,246,0.25) 0%, transparent 70%);
    border-radius: 40px;
    z-index: -1;
}

/* ===== SERVICES INTRO ===== */
.services-intro {
    padding: 110px 0;
    background: var(--bg-white);
    width: 100%;
    position: relative;
}
.services-intro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6C3FD4, #8B5CF6, #EC4899);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.services-content h2 {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 22px;
    line-height: 1.15;
}
.services-content p {
    font-size: 15.5px;
    line-height: 1.95;
    color: #555;
    margin-bottom: 18px;
}
.features-list {
    list-style: none;
    margin: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.features-list li {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--p6);
    border-radius: 8px;
    border-left: 3px solid var(--p2);
}
.services-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--card-shadow-lg);
    border: 2px solid var(--card-border);
}

/* ===== FEATURES ===== */
.features {
    padding: 110px 0;
    background: var(--bg-section);
    width: 100%;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--card-bg);
    padding: 48px 34px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C3FD4, #EC4899);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(108,63,212,0.4);
    box-shadow: var(--card-shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--p5), var(--p6));
    width: 92px; height: 92px;
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(108,63,212,0.15);
    border: 1.5px solid var(--card-border);
}
.feature-card h3 {
    font-family: var(--font-head);
    font-size: 21px;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 800;
}
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.8; }

/* ===== WHY US ===== */
.why-us {
    padding: 110px 0;
    background: var(--bg-white);
    width: 100%;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-us-card {
    background: var(--card-bg);
    padding: 40px 34px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}
.why-us-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C3FD4, #A78BFA);
    border-radius: 0 0 var(--r) var(--r);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.why-us-card:hover { border-color: rgba(108,63,212,0.4); box-shadow: var(--card-shadow-lg); transform: translateY(-8px); }
.why-us-card:hover::after { transform: scaleX(1); }
.why-us-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    color: #fff;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-head);
    box-shadow: 0 6px 20px rgba(108,63,212,0.3);
}
.why-us-card h3 { font-family: var(--font-head); font-size: 19px; color: var(--dark); margin-bottom: 14px; font-weight: 800; }
.why-us-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== INDUSTRIES ===== */
.industries {
    padding: 110px 0;
    background: var(--bg-alt);
    width: 100%;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.industry-item {
    background: var(--card-bg);
    padding: 34px 16px;
    border-radius: var(--r);
    text-align: center;
    border: 1.5px solid var(--card-border);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
}
.industry-item:hover {
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    border-color: #6C3FD4;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108,63,212,0.35);
}
.industry-item:hover p { color: #fff; }
.industry-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.industry-item p { font-size: 12.5px; font-weight: 700; color: var(--text); transition: color 0.3s; line-height: 1.4; }

/* ===== STATS ===== */
.stats {
    padding: 90px 0;
    background: linear-gradient(135deg, #3B1E8A 0%, #6C3FD4 50%, #8B5CF6 80%, #EC4899 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute; top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}
.stat-box {
    text-align: center;
    color: #fff;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-box:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-head);
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.stat-box p { font-size: 16px; font-weight: 600; opacity: 0.9; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 110px 0;
    background: var(--bg-white);
    width: 100%;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--card-bg);
    padding: 48px 38px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 28px;
    font-size: 110px;
    font-family: var(--font-head);
    color: var(--p5);
    line-height: 1;
    font-weight: 900;
}
.testimonial-card:hover { border-color: rgba(108,63,212,0.4); box-shadow: var(--card-shadow-lg); transform: translateY(-8px); }
.stars { font-size: 17px; margin-bottom: 20px; display: block; }
.testimonial-text { font-size: 15px; color: #555; margin-bottom: 28px; line-height: 2; font-style: italic; position: relative; z-index: 1; }
.testimonial-author h4 { font-family: var(--font-head); font-size: 17px; color: var(--dark); font-weight: 800; margin-bottom: 4px; }
.testimonial-author p { font-size: 13px; color: var(--p1); font-weight: 600; }

/* ===== CONSULTANT ===== */
.consultant-section {
    padding: 110px 0;
    background: var(--bg-section);
    width: 100%;
}
.consultant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.consultant-image { display: flex; justify-content: center; }
.consultant-img-box {
    background: var(--card-bg);
    border-radius: 28px;
    border: 2.5px solid rgba(108,63,212,0.35);
    box-shadow: 0 24px 70px rgba(108,63,212,0.22);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 480px;
}
.consultant-img-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6C3FD4, #EC4899);
}
.consultant-img { width: 100%; display: block; }
.consultant-img-badge {
    position: absolute;
    bottom: 22px; left: 22px;
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    color: #fff;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(108,63,212,0.45);
}
.consultant-content { display: flex; flex-direction: column; gap: 20px; }
.consultant-info-box {
    background: var(--card-bg);
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    padding: 28px 32px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.consultant-info-box:hover { border-color: rgba(108,63,212,0.35); box-shadow: var(--card-shadow-lg); }
.consultant-info-box.highlight {
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    border-color: transparent;
    color: #fff;
}
.consultant-info-box.highlight .consultant-label { color: rgba(255,255,255,0.7); }
.consultant-info-box.highlight .consultant-name { color: #fff; }
.consultant-info-box.highlight .consultant-title { color: #F9A8D4; }
.consultant-label { font-size: 11px; font-weight: 800; color: var(--p1); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.consultant-name { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 4px; line-height: 1.1; }
.consultant-title { font-size: 15px; color: var(--accent); font-weight: 600; }
.consultant-quote { font-size: 16px; color: var(--dark); font-style: italic; font-weight: 500; line-height: 1.7; }
.consultant-description { font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.consultant-stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #F0EBFF, #EDE9FE);
    border: 1.5px solid rgba(108,63,212,0.2);
    border-radius: var(--r);
    box-shadow: var(--card-shadow);
}
.c-stat { text-align: center; }
.c-stat + .c-stat { border-left: 1px solid rgba(108,63,212,0.2); padding-left: 16px; }
.c-stat-num { font-size: 30px; font-weight: 900; color: var(--p1); font-family: var(--font-head); display: block; line-height: 1.1; }
.c-stat-label { font-size: 12px; color: #666; font-weight: 600; margin-top: 4px; }

/* ===== TECH STACK ===== */
.tech-stack {
    padding: 110px 0;
    background: var(--bg-white);
    width: 100%;
}
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tech-item {
    background: var(--card-bg);
    padding: 38px 30px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.tech-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C3FD4, #EC4899);
}
.tech-item:hover { border-color: rgba(108,63,212,0.4); box-shadow: var(--card-shadow-lg); transform: translateY(-6px); }
.tech-item h4 { font-family: var(--font-head); font-size: 18px; color: var(--p1); margin-bottom: 14px; font-weight: 800; }
.tech-item p { font-size: 13.5px; color: var(--muted); line-height: 2; }

/* ===== BENEFITS ===== */
.benefits {
    padding: 110px 0;
    background: var(--bg-section);
    width: 100%;
}
.benefits-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-item {
    background: var(--card-bg);
    padding: 40px 34px;
    border-radius: var(--r);
    border-left: 5px solid var(--p1);
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
}
.benefit-item:hover { transform: translateX(8px); border-left-color: var(--accent); box-shadow: var(--card-shadow-lg); }
.benefit-number { font-size: 30px; color: var(--p1); font-weight: 900; display: inline-block; margin-bottom: 12px; }
.benefit-item h4 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 12px; font-weight: 800; }
.benefit-item p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== PROCESS ===== */
.process {
    padding: 110px 0;
    background: var(--bg-alt);
    width: 100%;
}
.process-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-step {
    background: var(--card-bg);
    padding: 44px 34px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
}
.process-step:hover { border-color: rgba(108,63,212,0.4); box-shadow: var(--card-shadow-lg); transform: translateY(-10px); }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #6C3FD4, #8B5CF6);
    color: #fff;
    border-radius: 16px;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(108,63,212,0.38);
    font-family: var(--font-head);
}
.process-step h3 { font-family: var(--font-head); font-size: 19px; color: var(--dark); margin-bottom: 12px; font-weight: 800; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #1E0A4A 0%, #3B1E8A 40%, #6C3FD4 70%, #EC4899 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -130px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 {
    font-family: var(--font-head);
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative;
}
.cta-section p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; position: relative; }
.cta-section .btn-primary {
    background: #fff;
    color: var(--p1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    position: relative;
}
.cta-section .btn-primary:hover { background: var(--p5); color: #5B18E8; }

/* ===== CONTACT ===== */
.contact {
    padding: 110px 0;
    background: var(--bg-white);
    width: 100%;
}
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-form-box {
    background: var(--card-bg);
    border-radius: 28px;
    border: 1.5px solid var(--card-border);
    padding: 54px 48px;
    box-shadow: var(--card-shadow-lg);
    backdrop-filter: blur(12px);
}
.contact-form-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 30px;
}
.form-group { margin-bottom: 20px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(108,63,212,0.2);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(108,63,212,0.06);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--p1);
    box-shadow: 0 0 0 4px rgba(108,63,212,0.1);
    background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button { width: 100%; margin-top: 6px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-box {
    background: var(--card-bg);
    padding: 28px 32px;
    border-radius: var(--r);
    border: 1.5px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(8px);
}
.info-box:hover { border-color: rgba(108,63,212,0.4); box-shadow: var(--card-shadow-lg); transform: translateX(6px); }
.info-icon {
    font-size: 26px;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--p5), var(--p6));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--card-border);
}
.info-text h4 { font-family: var(--font-head); font-size: 16px; color: var(--p1); margin-bottom: 6px; font-weight: 800; }
.info-text p { font-size: 14px; color: var(--dark); line-height: 1.8; }
.info-text a { color: var(--p1); text-decoration: none; font-weight: 700; }
.info-text a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-container { padding: 80px 40px; }
    .hero-title { font-size: 46px; }
    .features-grid, .why-us-grid, .testimonials-grid, .benefits-container { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .hero-container { grid-template-columns: 1fr; gap: 44px; padding: 64px 24px; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 15px; }
    .services-grid, .contact-wrapper, .consultant-wrapper { grid-template-columns: 1fr; gap: 44px; }
    .features-grid, .why-us-grid, .benefits-container, .testimonials-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 40px; }
    .cta-section h2 { font-size: 32px; }
    .features-list { grid-template-columns: 1fr; }
    .contact-form-box { padding: 36px 28px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section h2 { font-size: 28px; }
    .contact-form-box { padding: 28px 20px; }
}/* End custom CSS */