/* ==============================
   VARIABLES & RESET
   ============================== */
:root {
    --primary:    #ec4b46;
    --secondary:  #f59d6a;
    --dark:       #222222;
    --white:      #ffffff;
    --light-bg:   #F2F5F7;
    --text:       #3a3a3a;
    --text-muted: #888888;
    --border:     #e7e7e7;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }

/* Remove 300ms tap delay on all interactive elements */
a, button, input, select, textarea, label { touch-action: manipulation; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ==============================
   LAYOUT
   ============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
main { min-height: calc(100vh - 72px); }
section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-image { height: 48px; width: auto; object-fit: contain; display: block; }

.navbar-menu { display: flex; gap: 4px; align-items: center; }

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 12px;
    padding: 6px 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }

.nav-cta { margin-left: 12px !important; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    transform-origin: center;
}

/* Animate hamburger → X when active */
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Minimum 44px touch target for accessibility */
.menu-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border: 2px solid transparent;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    overflow: hidden;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-white:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.btn-large { padding: 16px 38px; font-size: 11px; }

/* ==============================
   HERO SECTION
   ============================== */
.hero {
    background-color: var(--dark);
    padding: 120px 0;
    text-align: center;
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.9;
    font-weight: 400;
}

.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ==============================
   SERVICES SECTION (homepage)
   ============================== */
.services-section { background-color: var(--white); padding: 90px 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.service-card {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.service-card:last-child { border-right: none; }
.service-card:hover { background-color: var(--light-bg); }

.service-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}

.service-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0 24px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.card-link {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
}
.card-link:hover { color: var(--dark); }

/* ==============================
   ABOUT SECTION (homepage)
   ============================== */
.about-section { background-color: var(--light-bg); padding: 90px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-text p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.95;
    margin-bottom: 16px;
}

.about-text .btn { margin-top: 12px; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
}

.stat-box {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover { background: var(--dark); }
.stat-box:hover .stat-number,
.stat-box:hover .stat-label { color: var(--white); }

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

/* ==============================
   STATS BAR (dark)
   ============================== */
.stats-bar { background-color: var(--dark); padding: 0; }

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 56px;
    gap: 8px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-stat:last-child { border-right: none; }

.trust-number {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-divider { display: none; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section { background-color: var(--white); padding: 90px 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 40px 36px;
    border-radius: 0;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 80px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
}

.stars { margin-bottom: 16px; font-size: 14px; letter-spacing: 2px; color: var(--primary); }

.testimonial-quote {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author { font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 13px; }
.testimonial-company { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ==============================
   VALUES / WHY CHOOSE US (homepage)
   ============================== */
.values-section { background-color: var(--light-bg); padding: 90px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.value-card {
    background: var(--white);
    padding: 40px 36px;
    transition: var(--transition);
}

.value-card:hover { background: var(--dark); }
.value-card:hover h4,
.value-card:hover p { color: rgba(255,255,255,0.8); }
.value-card:hover h4 { color: var(--white); }

.value-icon { font-size: 36px; margin-bottom: 20px; display: block; line-height: 1; }

.value-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    transition: var(--transition);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 13px;
    margin: 0;
    transition: var(--transition);
}

/* ==============================
   CTA SECTIONS
   ============================== */
.final-cta-section,
.about-cta,
.services-cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.final-cta-section h2,
.about-cta h2,
.services-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
}

.final-cta-section p,
.about-cta p,
.services-cta p {
    font-size: 15px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==============================
   FOOTER
   ============================== */
.footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 72px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    transition: var(--transition);
    display: block;
}

.footer-section a:hover { color: var(--primary); }
.footer-section ul li { margin-bottom: 4px; }

.footer-brand .footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand .footer-logo-img { height: 48px; width: auto; object-fit: contain; display: block; }

.footer-brand p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 20px;
}

.social-links { display: flex; gap: 8px; }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236,75,70,0.4);
}

.footer-contact-list p { margin-bottom: 6px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ==============================
   PAGE HERO (inner pages)
   ============================== */
.page-hero {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
}

.page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==============================
   ABOUT PAGE
   ============================== */
.about-overview { padding: 90px 0; background: var(--white); }

.overview-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: start;
}

.overview-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.25;
}

.overview-text p { color: var(--text-muted); line-height: 1.95; margin-bottom: 16px; font-size: 13px; }

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

/* MISSION VISION VALUES */
.mission-vision-values { background-color: var(--light-bg); padding: 90px 0; }

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.mvv-card {
    background-color: var(--white);
    padding: 48px 40px;
    border-radius: 0;
    transition: var(--transition);
}

.mvv-card:hover { background: var(--dark); }
.mvv-card:hover h3 { color: var(--white); }
.mvv-card:hover p,
.mvv-card:hover ul li { color: rgba(255,255,255,0.65); }
.mvv-card:hover ul li strong { color: rgba(255,255,255,0.9); }

.mvv-icon { font-size: 40px; margin-bottom: 20px; display: block; line-height: 1; }

.mvv-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    transition: var(--transition);
}

.mvv-card p { color: var(--text-muted); line-height: 1.85; font-size: 13px; transition: var(--transition); }

.mvv-card ul { text-align: left; }

.mvv-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 13px;
    padding-left: 16px;
    position: relative;
    transition: var(--transition);
}

.mvv-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--primary); font-size: 11px; top: 1px; }
.mvv-card ul li strong { color: var(--dark); font-weight: 600; }

/* BUSINESS STRUCTURE */
.business-structure { background-color: var(--white); padding: 90px 0; }

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.structure-card {
    padding: 40px 36px;
    border-right: 1px solid var(--border);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

.structure-card:last-child { border-right: none; }
.structure-card:hover { background: var(--light-bg); }

.structure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.structure-card-it_solutions::before { background: var(--primary); }
.structure-card-consulting::before   { background: #7c3aed; }
.structure-card-ecommerce::before    { background: #0891b2; }

.structure-icon { font-size: 36px; margin-bottom: 16px; line-height: 1; }

.structure-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }

.unit-description { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; font-size: 13px; }

.structure-card h5 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.services-list { margin-bottom: 24px; }

.services-list li {
    padding: 7px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-list li:last-child { border-bottom: none; }

.services-list li::before { content: '→'; color: var(--primary); font-size: 11px; flex-shrink: 0; }

/* WHY CHOOSE US */
.why-choose-us { background-color: var(--light-bg); padding: 90px 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.why-item {
    background-color: var(--white);
    padding: 36px 32px;
    border-radius: 0;
    transition: var(--transition);
}

.why-item:hover { background: var(--dark); }
.why-item:hover h4 { color: var(--white); }
.why-item:hover p { color: rgba(255,255,255,0.65); }

.why-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; color: var(--dark); transition: var(--transition); }
.why-item p { color: var(--text-muted); line-height: 1.85; font-size: 13px; transition: var(--transition); }

/* TEAM SECTION */
.team-section { background-color: var(--white); padding: 90px 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
}

.team-member {
    background-color: var(--white);
    padding: 40px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-radius: 0;
    transition: var(--transition);
}

.team-member:last-child { border-right: none; }
.team-member:hover { background: var(--light-bg); }

.member-avatar { font-size: 48px; margin-bottom: 16px; line-height: 1; }
.team-member h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }

.member-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 10px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

.member-bio { color: var(--text-muted); font-size: 12px; line-height: 1.7; }

/* ==============================
   SERVICES PAGE
   ============================== */
.services-intro {
    background-color: var(--light-bg);
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.intro-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.95;
}

.service-section { padding: 90px 0; background-color: var(--white); border-bottom: 1px solid var(--border); }
.service-section.alt { background-color: var(--light-bg); }

.service-header { text-align: center; margin-bottom: 56px; }

.service-header .service-icon { font-size: 48px; margin-bottom: 16px; display: block; line-height: 1; }

.service-header h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-subtitle { font-size: 14px; color: var(--text-muted); }

.service-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px; }

.service-description h3,
.service-details h3 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-description p { color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; font-size: 13px; }

.services-list-grid { display: grid; gap: 8px; }

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.service-section.alt .service-item { background-color: var(--white); }
.service-item:hover { border-color: var(--primary); color: var(--primary); }
.service-item .service-icon { color: var(--primary); font-weight: 700; flex-shrink: 0; }

.service-footer { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); }
.service-footer p { margin-bottom: 20px; font-size: 15px; color: var(--dark); font-weight: 600; }

/* INTEGRATION SECTION */
.integration-section { background-color: var(--light-bg); padding: 90px 0; }

.integration-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.scenario {
    background-color: var(--white);
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    border-radius: 0;
    transition: var(--transition);
}

.scenario:last-child { border-right: none; }
.scenario:hover { background: var(--light-bg); }

.scenario h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scenario p { color: var(--text-muted); margin-bottom: 10px; line-height: 1.75; font-size: 13px; }
.scenario p strong { color: var(--dark); font-weight: 600; }

.result {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { padding: 90px 0; background-color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.contact-form-column h2,
.contact-info-column h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; }

.alert {
    padding: 14px 18px;
    border-radius: 0;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 13px;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.contact-info-box {
    background-color: var(--light-bg);
    padding: 22px 24px;
    border-radius: 0;
    margin-bottom: 2px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-box:hover { border-color: var(--primary); }

.contact-info-box h4 {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-box p { color: var(--text); margin-bottom: 4px; font-size: 13px; }
.contact-info-box p a { color: var(--primary); font-weight: 600; }
.contact-info-box p a:hover { text-decoration: underline; }
.info-note { font-size: 11px !important; color: var(--text-muted) !important; margin-top: 4px !important; }

.contact-social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }

.contact-social-links a {
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-social-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* CONTACT SERVICES */
.contact-services { background-color: var(--light-bg); padding: 90px 0; }

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.service-link-card {
    background-color: var(--white);
    padding: 40px 36px;
    border-right: 1px solid var(--border);
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
}

.service-link-card:last-child { border-right: none; }
.service-link-card:hover { background: var(--light-bg); }
.service-link-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-link-card p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; font-size: 13px; }

/* ==============================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ============================== */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .hero-headline { font-size: 68px; }
}

/* ==============================
   RESPONSIVE — TABLET / iPAD (769px–1024px)
   ============================== */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .integration-scenarios { grid-template-columns: 1fr; border: none; background: var(--border); gap: 1px; }
    .scenario { border-right: none; }
    .mvv-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-headline { font-size: 50px; }
    .trust-stat { padding: 32px 32px; }
}

/* ==============================
   RESPONSIVE — MOBILE (≤768px)
   Covers standard phones, iPad mini portrait
   ============================== */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 80px 0; }
    .hero-headline { font-size: 38px; }
    .section-header h2 { font-size: 30px; }
    .page-hero h1 { font-size: 34px; }
    .page-hero { padding: 56px 0; }
    .hero-cta, .cta-buttons { flex-direction: column; align-items: center; }
    .hero-cta .btn, .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

    .about-grid,
    .contact-grid,
    .overview-content,
    .service-content { grid-template-columns: 1fr; gap: 40px; }

    .navbar-menu { display: none; }
    .navbar-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 3px solid var(--primary);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        padding: 0 0 20px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .navbar-menu.mobile-open .nav-link {
        display: block;
        padding: 18px 28px;
        font-size: 13px;
        letter-spacing: 1px;
        border-bottom: 1px solid var(--border);
        color: var(--text);
        width: 100%;
        box-sizing: border-box;
    }
    .navbar-menu.mobile-open .nav-link:hover,
    .navbar-menu.mobile-open .nav-link.active { color: var(--primary); background: #f5f7ff; }
    .navbar-menu.mobile-open .nav-cta {
        display: block;
        margin: 20px 28px 0 !important;
        text-align: center;
        box-sizing: border-box;
    }
    .menu-toggle { display: flex; }

    .mvv-grid,
    .services-grid,
    .structure-grid,
    .values-grid,
    .why-grid,
    .service-links-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 1px;
        background: var(--border);
    }

    .service-card, .structure-card, .service-link-card { border-right: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); border: none; background: var(--border); gap: 1px; }
    .team-member { border-right: none; }

    .trust-stats { display: grid; grid-template-columns: repeat(2, 1fr); }
    .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .final-cta-section h2, .about-cta h2, .services-cta h2 { font-size: 30px; }
    .final-cta-section, .about-cta, .services-cta { padding: 72px 0; }

    .service-card { padding: 36px 28px; }
    .mvv-card { padding: 36px 28px; }
}

/* ==============================
   RESPONSIVE — SMALL PHONES (≤480px)
   Covers most Android phones, iPhone SE
   ============================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    section { padding: 48px 0; }
    .hero { padding: 64px 0; }
    .hero-headline { font-size: 30px; }
    .section-header h2 { font-size: 26px; }
    .btn { padding: 12px 24px; font-size: 10px; }
    .btn-large { padding: 14px 28px; }
    .page-hero h1 { font-size: 28px; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .final-cta-section h2, .about-cta h2, .services-cta h2 { font-size: 26px; }
    .about-stats, .overview-stats { grid-template-columns: 1fr 1fr; }
    .stat-box { padding: 32px 20px; }
    .logo-image { height: 40px; }
    .contact-grid { gap: 28px; }
}

/* ==============================
   RESPONSIVE — SMALL FLIP / COMPACT (≤360px)
   Covers Samsung Flip (open), budget Android, small iPhones
   ============================== */
@media (max-width: 360px) {
    .container { padding: 0 14px; }
    section { padding: 40px 0; }
    .hero { padding: 56px 0; }
    .hero-headline { font-size: 26px; line-height: 1.2; }
    .hero-subtext { font-size: 13px; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 13px; }
    .page-hero h1 { font-size: 24px; }
    .page-hero p { font-size: 13px; }
    .logo-image { height: 36px; }
    .btn { padding: 11px 18px; font-size: 10px; letter-spacing: 1px; }
    .btn-large { padding: 13px 22px; }
    .stat-number { font-size: 30px; }
    .trust-number { font-size: 26px; }
    .service-number { font-size: 34px; }
    .service-card { padding: 32px 20px; }
    .mvv-card, .value-card, .why-item { padding: 28px 18px; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .about-stats, .overview-stats { grid-template-columns: 1fr 1fr; }
    .final-cta-section h2, .about-cta h2, .services-cta h2 { font-size: 22px; }
    .final-cta-section, .about-cta, .services-cta { padding: 56px 0; }
    .footer-logo-img { height: 38px; }
    .footer-content { gap: 24px; }
}

/* ==============================
   RESPONSIVE — ULTRA NARROW (≤300px)
   Galaxy Fold (closed ~280px), very old flip phones
   ============================== */
@media (max-width: 300px) {
    .container { padding: 0 10px; }
    .hero-headline { font-size: 22px; }
    .hero-subtext { font-size: 12px; }
    .section-header h2 { font-size: 20px; }
    .page-hero h1 { font-size: 20px; }
    .logo-image { height: 30px; }
    .navbar .container { height: 60px; }
    .trust-stats { grid-template-columns: 1fr; }
    .about-stats, .overview-stats { grid-template-columns: 1fr; }
    .stat-box { padding: 24px 16px; }
    .stat-number { font-size: 28px; }
    .btn { padding: 10px 16px; letter-spacing: 0.5px; white-space: normal; text-align: center; }
    .hero-cta .btn, .cta-buttons .btn { max-width: 100%; }
    .service-card { padding: 24px 14px; }
    .mvv-card, .value-card, .why-item { padding: 22px 14px; }
    .team-grid { grid-template-columns: 1fr; }
    .final-cta-section h2, .about-cta h2, .services-cta h2 { font-size: 20px; }
    .service-number { font-size: 28px; }
}

/* ==============================
   EQUAL HIRES SPOTLIGHT (homepage)
   ============================== */
.equalhires-spotlight { background: linear-gradient(135deg, #f8f4ff 0%, #fdf2ff 100%); border-top: 4px solid #7c3aed; }

.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 60px;
    align-items: center;
}

.spotlight-text .section-eyebrow { color: #7c3aed; }
.spotlight-text h2 { color: var(--dark); font-size: 36px; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.spotlight-text p  { color: var(--text); line-height: 1.75; margin-bottom: 20px; }

.spotlight-list { list-style: none; padding: 0; margin: 0 0 28px; }
.spotlight-list li {
    padding: 7px 0 7px 24px;
    position: relative;
    font-size: 13.5px;
    color: var(--text);
    border-bottom: 1px solid rgba(124,58,237,0.1);
}
.spotlight-list li::before { content: '✓'; position: absolute; left: 0; color: #7c3aed; font-weight: 700; }

.spotlight-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.spotlight-badge {
    background: #fff;
    border: 2px solid #7c3aed;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}
.badge-icon   { font-size: 52px; margin-bottom: 12px; display: block; }
.badge-title  { font-size: 18px; font-weight: 700; color: #7c3aed; margin: 0 0 4px; }
.badge-sub    { font-size: 12px; color: var(--text-muted); margin: 0 0 20px; }
.badge-stat   { font-size: 13px; font-weight: 600; background: #7c3aed; color: #fff; border-radius: 20px; padding: 6px 14px; display: inline-block; }

@media (max-width: 768px) {
    .spotlight-inner { grid-template-columns: 1fr; gap: 32px; }
    .spotlight-badge { max-width: 260px; margin: 0 auto; }
    .spotlight-text h2 { font-size: 26px; }
}

/* ==============================
   UTILITIES
   ============================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }
.visible { display: block; }
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
