/* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ===== CSS VARIABLES ===== */
    :root {
      --primary: #F97316;
      --primary-dark: #EA580C;
      --primary-light: #FFF7ED;
      --text: #1e293b;
      --text-light: #64748b;
      --bg: #fff;
      --bg-light: #FEF9F5;
      --bg-dark: #0F172A;
      --border: #e2e8f0;
      --shadow: 0 4px 20px rgba(0,0,0,0.06);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
      --radius: 12px;
      --transition: 0.3s ease;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 60px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      transition: var(--transition);
    }
    .navbar.scrolled { box-shadow: var(--shadow); }
    .nav-logo {
      font-size: 1.4rem; font-weight: 800;
      color: var(--primary);
      letter-spacing: 2px;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500;
      color: var(--text);
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-phone {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.85rem; font-weight: 600;
      color: var(--text);
    }
    .nav-phone svg { width: 16px; height: 16px; fill: var(--primary); }
    .nav-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

    /* ===== HERO ===== */
    .hero {
      padding: 120px 60px 80px;
      background: var(--bg-light);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-text .hero-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .hero-text h1 {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .hero-text h1 span { color: var(--primary); }
    .hero-text p {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px;
      background: var(--primary);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 8px;
      border: 2px solid var(--primary);
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-outline:hover { background: var(--primary); color: #fff; }
    .hero-badges {
      display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    }
    .hero-exp-badge {
      display: flex; align-items: center; gap: 12px;
      background: var(--primary);
      color: #fff;
      padding: 12px 20px;
      border-radius: 10px;
    }
    .hero-exp-badge .exp-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
    .hero-exp-badge .exp-text { font-size: 0.78rem; line-height: 1.3; }
    .hero-avatars {
      display: flex; align-items: center; gap: 8px;
    }
    .hero-avatars .avatar-stack {
      display: flex;
    }
    .hero-avatars .avatar-stack span {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--primary-light);
      border: 2px solid #fff;
      margin-left: -8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700;
      color: var(--primary);
    }
    .hero-avatars .avatar-stack span:first-child { margin-left: 0; }
    .hero-avatars .avatar-text {
      font-size: 0.82rem;
      color: var(--text-light);
    }
    .hero-avatars .avatar-text strong { color: var(--text); }
    .hero-image {
      position: relative;
    }
    .hero-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 16px;
    }
    .hero-image-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: #fff;
      padding: 12px 20px;
      border-radius: 10px;
      box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 10px;
    }
    .hero-image-badge svg { width: 20px; height: 20px; fill: var(--primary); }
    .hero-image-badge span { font-size: 0.85rem; font-weight: 600; }

    /* ===== INDUSTRY BAR ===== */
    .industry-bar {
      padding: 20px 60px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .industry-bar span {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 2px;
      display: flex; align-items: center; gap: 8px;
    }
    .industry-bar span svg { width: 18px; height: 18px; fill: var(--primary); }

    /* ===== SECTION COMMON ===== */
    .section { padding: 100px 60px; }
    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    /* ===== ABOUT ===== */
    .about { background: var(--bg); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .about-image {
      position: relative;
    }
    .about-image img {
      width: 100%; height: 400px;
      object-fit: cover;
      border-radius: var(--radius);
    }
    .about-exp-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: var(--primary);
      color: #fff;
      padding: 16px 20px;
      border-radius: 10px;
      text-align: center;
    }
    .about-exp-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
    .about-exp-badge .text { font-size: 0.75rem; }
    .about-text .section-label { margin-bottom: 8px; }
    .about-text h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .about-text p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .about-buttons { display: flex; gap: 12px; margin-bottom: 24px; }
    .about-checks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .about-checks li {
      font-size: 0.88rem;
      color: var(--text);
      display: flex; align-items: center; gap: 8px;
    }
    .about-checks li::before {
      content: '✓';
      color: var(--primary);
      font-weight: 700;
    }

    /* ===== SERVICES ICONS ===== */
    .services-icons {
      padding: 60px;
      background: var(--bg-light);
    }
    .services-icons-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
    }
    .si-item {
      text-align: center;
    }
    .si-icon {
      width: 64px; height: 64px;
      margin: 0 auto 10px;
      background: #fff;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow);
    }
    .si-icon svg { width: 28px; height: 28px; fill: var(--primary); }
    .si-item span {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ===== SECTORS ===== */
    .sectors { background: var(--bg); }
    .sectors-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .sectors-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }
    .sectors-image img {
      width: 100%; height: 400px;
      object-fit: cover;
      border-radius: var(--radius);
    }
    .sectors-list {
      display: flex; flex-direction: column; gap: 0;
    }
    .sector-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .sector-item h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .sector-item p {
      font-size: 0.82rem;
      color: var(--text-light);
    }
    .sector-arrow {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: var(--transition);
    }
    .sector-arrow:hover { background: var(--primary); color: #fff; }
    .projects-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .project-thumb {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      height: 200px;
    }
    .project-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .project-thumb .project-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: #fff;
      padding: 30px 14px 14px;
      font-size: 0.82rem;
      font-weight: 600;
    }

    /* ===== FAQ ===== */
    .faq { background: var(--bg-light); }
    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      width: 100%;
      padding: 18px 0;
      background: none;
      border: none;
      text-align: left;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: inherit;
    }
    .faq-question:hover { color: var(--primary); }
    .faq-question .faq-toggle {
      font-size: 1.2rem;
      color: var(--primary);
      transition: var(--transition);
    }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-answer { max-height: 200px; }
    .faq-answer p {
      padding-bottom: 18px;
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
    }
    .faq-image img {
      width: 100%; height: 400px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    /* ===== TEAM ===== */
    .team { background: var(--bg); }
    .team-header { text-align: center; margin-bottom: 50px; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }
    .team-card { text-align: center; }
    .team-photo {
      width: 100%; height: 260px;
      object-fit: cover;
      border-radius: var(--radius);
      margin-bottom: 14px;
    }
    .team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
    .team-card p { font-size: 0.82rem; color: var(--text-light); }

    /* ===== STATS ===== */
    .stats {
      background: var(--bg-dark);
      padding: 60px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .stat-item .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .stat-item .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: var(--bg-light); }
    .testimonials-header { text-align: center; margin-bottom: 50px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }
    .testimonial-header {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 14px;
    }
    .testimonial-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-name { font-size: 0.95rem; font-weight: 700; }
    .testimonial-role { font-size: 0.78rem; color: var(--text-light); }
    .testimonial-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 12px; }
    .testimonial-text {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===== BLOG ===== */
    .blog { background: var(--bg); }
    .blog-header { text-align: center; margin-bottom: 50px; }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .blog-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .blog-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .blog-image img { width: 100%; height: 100%; object-fit: cover; }
    .blog-date {
      position: absolute;
      bottom: 12px; left: 12px;
      background: var(--primary);
      color: #fff;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .blog-body { padding: 20px; }
    .blog-body h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .blog-meta {
      font-size: 0.78rem;
      color: var(--text-light);
      display: flex; gap: 12px;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: var(--bg-dark);
      padding: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 100%;
    }
    .cta-banner h2 {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
    }
    .cta-banner h2 span { color: var(--primary); }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--bg-dark);
      color: rgba(255,255,255,0.7);
      padding: 0 60px 30px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 0 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .nav-logo {
      color: var(--primary);
      margin-bottom: 16px;
      display: block;
    }
    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }
    .social-links { display: flex; gap: 10px; }
    .social-links a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .social-links a:hover { background: var(--primary); }
    .social-links svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.7); }
    .footer h4 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer ul li { margin-bottom: 10px; }
    .footer ul li a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      transition: var(--transition);
    }
    .footer ul li a:hover { color: #fff; }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 12px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
    }
    .footer-contact-item svg {
      width: 16px; height: 16px; min-width: 16px;
      fill: var(--primary);
      margin-top: 3px;
    }
    .newsletter-form {
      display: flex;
      margin-top: 12px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px 0 0 6px;
      background: rgba(255,255,255,0.05);
      color: #fff;
      font-size: 0.88rem;
      outline: none;
    }
    .newsletter-form button {
      padding: 10px 18px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      font-weight: 600;
      transition: var(--transition);
    }
    .newsletter-form button:hover { background: var(--primary-dark); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.35);
    }

    /* ===== ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .navbar { padding: 0 30px; }
      .hero { padding: 120px 30px 60px; }
      .hero-text h1 { font-size: 2.4rem; }
      .section { padding: 80px 30px; }
      .about-inner, .sectors-inner, .faq-inner { grid-template-columns: 1fr; }
      .projects-row { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
      .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-banner { flex-direction: column; gap: 20px; text-align: center; padding: 40px 30px; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-phone { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: #fff; padding: 20px 30px;
        box-shadow: var(--shadow); gap: 16px;
      }
      .hero { grid-template-columns: 1fr; }
      .hero-text h1 { font-size: 2rem; }
      .projects-row { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .industry-bar { gap: 20px; }
    }