:root {
    --bg-dark: #0b0f17;
    --bg-light: #111827;
    --text-main: #f5f7fb;
    --text-muted: #9ca3af;
    --accent: #38bdf8;
    --card: #1f2933;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
  }
  
  a {
    color: var(--accent);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  
  .logo img {
    height: 42px;
    width: auto;
    display: block;
  }
  
  .nav-links {
    display: flex;
    gap: 28px;
  }
  
  .nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  .hero-video {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }
  
  .hero-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
  }
  
  header {
    background: linear-gradient(180deg, #020617, #0b0f17);
    padding: 80px 0;
    text-align: center;
  }
  
  header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 10px;
  }
  
  header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .cta {
    display: inline-block;
    padding: 14px 26px;
    background: var(--accent);
    color: #020617;
    font-weight: 600;
    border-radius: 6px;
  }

  section {
    padding: 80px 0;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  
  .service-card {
    background: var(--card);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .service-card h3 {
    margin-top: 0;
  }
  
  .about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
  }
  
section .testimonials {
    display: grid;
    grid-template-columns: 1fr;     
    gap: 26px;
    max-width: 920px;                   
    margin: 0 auto;
  }
  
  section blockquote {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 22px 22px 18px;
    margin: 0;
  }
  
  section blockquote {
    color: var(--text-main);
    font-size: 1.02rem;
    line-height: 1.75;
  }
  
  section blockquote footer {
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    height: auto;
    min-height: 0;
    display: block;
    text-align: left;                  
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
  }

  section blockquote footer::before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 14px 0 10px;
    background: rgba(255,255,255,0.10);
  }
  
  section h2 {
    margin-bottom: 28px;
  }
  
  @media (max-width: 600px) {
    section blockquote {
      padding: 18px 16px 14px;
    }
    section blockquote {
      font-size: 0.98rem;
    }
  }
  
  
  
  footer {
    background: #020617;
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  