:root {
  /* --- Colors from Style V1 --- */
  --color-primary: #6A35FF;       
  --color-primary-dark: #4800E0;  
  --color-accent: #CCFF00;        
  --color-accent-hover: #B2E600;            
  
  --bg-hero: radial-gradient(circle at 50% 0%, #2a1b5e 0%, #120a2e 40%, #05030f 100%);
  --bg-dark: #120A2E;             
  --bg-darker: #080516;           
  --bg-light: #ffffff;
  --bg-light-grey: #f4f6fc;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;            
  --container-width: 1240px;
  
  --shadow-card: 0 15px 40px rgba(18, 10, 46, 0.08);
  --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    background-color: #080516; /* Match style_v1 base */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light); 
  color: var(--bg-dark); 
  line-height: 1.7; 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s var(--ease-smooth); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- HEADER (EXACT COPY FROM STYLE V1) --- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(18, 10, 46, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated Header Line */
header::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  background-size: 200% 100%;
  opacity: 0; transition: 0.3s;
  animation: gradient-slide 3s linear infinite;
}
header.scrolled::after { opacity: 0.6; }

.logo { display: flex; align-items: center; gap: 14px; max-width: 70%; text-decoration: none; }
.logo img { width: 60px; height: auto; transition: 0.3s; filter: drop-shadow(0 0 10px rgba(106, 53, 255, 0.5)); }

.logo-text { display: flex; flex-direction: column; text-align: left; }
.company-name { 
   font-size: 1.5rem; color: #fff; font-weight: 900; 
   letter-spacing: -0.5px; line-height: 1; margin-bottom: 4px; 
   text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.company-slogan { 
   font-size: 0.7rem; color: var(--color-accent); 
   text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; 
}

nav { display: flex; align-items: center; gap: 35px; }
nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; position: relative; padding: 5px 0; }

nav a:not(.nav-btn)::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
  background: var(--color-accent); transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
nav a:not(.nav-btn):hover::before { width: 100%; left: 0; right: auto; }
nav a:not(.nav-btn):hover { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.4); }

.nav-btn {
  padding: 12px 26px;
  background: rgba(106, 53, 255, 0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.nav-btn:hover { background: var(--color-primary); border-color: var(--color-primary); box-shadow: 0 0 20px rgba(106, 53, 255, 0.4); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 10px; z-index: 1001; }
.menu-toggle span { width: 28px; height: 2px; background: #fff; transition: 0.3s; border-radius: 2px; }

/* --- PAGE CONTENT --- */
.starfield {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(1px 1px at 10% 10%, rgba(255,255,255,0.3) 100%, transparent),
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.2) 100%, transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2) 100%, transparent);
    background-size: 100% 100%;
    opacity: 0.4;
}

.page-hero {
    padding: 160px 5% 100px; /* Matched Style V1 */
    text-align: center;
    background: var(--bg-hero);
    position: relative;
    color: #fff;
    margin-bottom: 0; 
}
.hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: conic-gradient(from 180deg at 50% 50%, var(--color-primary), #4800E0, transparent, var(--color-primary));
  top: -10%; right: -5%;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  filter: blur(100px);
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative; z-index: 1;
}
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

.content-wrapper {
    background: linear-gradient(to bottom, #ffffff 0%, #f4f6fc 100%); 
    padding: 80px 5%;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: var(--container-width);
    margin: -60px auto 80px; 
    position: relative; z-index: 10;
}
.trust-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.3s;
    border-bottom: 3px solid var(--color-accent);
}
.trust-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(106, 53, 255, 0.15); border-color: var(--color-primary); }
.trust-card h3 { font-size: 2.2rem; color: var(--bg-dark); margin-bottom: 5px; font-weight: 800; }
.trust-card p { font-size: 0.9rem; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 { 
    font-size: 2.2rem; 
    color: var(--bg-dark); 
    margin-bottom: 20px; 
    font-weight: 800;
}
.contact-info p { color: #555; margin-bottom: 40px; font-size: 1.05rem; }

.step-item { display: flex; gap: 20px; margin-bottom: 40px; position: relative; }
.step-item:last-child { margin-bottom: 0; }

.step-item:not(:last-child)::after {
    content: ''; position: absolute; left: 24px; top: 55px; bottom: -25px; width: 2px;
    background: #e0e0e0;
}

.step-number {
    width: 50px; height: 50px; flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(106, 53, 255, 0.15);
    position: relative; z-index: 2;
}
.step-text h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--bg-dark); font-weight: 700; }
.step-text p { font-size: 0.95rem; color: #666; line-height: 1.6; }

.form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-card); 
    border: 1px solid rgba(0,0,0,0.03);
}

.form-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.form-header i { font-size: 1.8rem; color: var(--color-primary); }
.form-header h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; color: var(--bg-dark); }

.form-group { display: flex; gap: 20px; margin-bottom: 20px; }

input, textarea {
    width: 100%;
    background: #f8f9ff; 
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}
input::placeholder, textarea::placeholder { color: #94a3b8; }

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(106, 53, 255, 0.1);
}

textarea { height: 160px; resize: vertical; margin-bottom: 25px; }

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(106, 53, 255, 0.25);
}
.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(106, 53, 255, 0.4);
}

.contact-direct { margin-top: 25px; text-align: center; color: #777; font-size: 0.95rem; }
.contact-direct a { color: var(--color-primary); font-weight: 700; }

.map-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5% 80px;
}
.map-frame {
    width: 100%; height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

footer { 
    background: var(--bg-darker); 
    color: #fff; 
    padding: 80px 5% 40px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    font-size: 1.05rem;
    position: relative; 
}
footer::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}
.footer-container {
  max-width: var(--container-width); margin: 0 auto;
  display: grid; 
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr; 
  gap: 60px;
  padding-bottom: 60px; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h2 { 
   margin-bottom: 25px; letter-spacing: 1px; color: #fff; font-size: 1.8rem;
   background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 80%);
   -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { color: #aaa; margin-bottom: 35px; line-height: 1.8; max-width: 380px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; transition: 0.3s;
}
.footer-social a:hover { 
  transform: translateY(-5px); background: var(--color-primary); 
  border-color: var(--color-primary); box-shadow: 0 0 25px rgba(106, 53, 255, 0.6);
}
.footer-col h3 { 
    font-size: 1.3rem; margin-bottom: 30px; color: #fff; position: relative; display: inline-block;
}
.footer-col h3::after {
    content: ''; position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px;
    background: var(--color-accent); border-radius: 2px; opacity: 0.8;
}
.footer-col ul li { margin-bottom: 18px; }
.footer-col a { color: #aaa; transition: 0.3s; }
.footer-col a:hover { color: var(--color-accent); padding-left: 8px; }
.footer-bottom { text-align: center; padding-top: 40px; color: #666; font-size: 0.95rem; }

.whatsapp-chat { position: fixed; bottom: 40px; right: 40px; z-index: 1000; }
.whatsapp-chat img { width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: 0.4s; }
.whatsapp-chat img:hover { transform: scale(1.15) rotate(15deg); }

@keyframes gradient-slide { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

    @media (max-width: 1080px) {
          .menu-toggle { 
          display: flex; 
          z-index: 1002; 
          position: relative; 
      }

      header.nav-active,
      body.no-scroll header {
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
          background: transparent !important;
      }

      nav {
         position: fixed; 
         top: 0; 
         left: 0; 
         width: 100%;
         height: 100dvh; 
         background: #120A2E; 
         flex-direction: column;
         justify-content: center; 
         align-items: center;
         transform: translateX(100%); 
         transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
         z-index: 1001; 
         padding-top: 60px;
         overflow-y: auto; 
      }

      nav.active { 
          transform: translateX(0); 
          box-shadow: -10px 0 30px rgba(0,0,0,0.5);
      }

      nav a { 
          font-size: 1.8rem; 
          color: #fff; 
          margin: 15px 0; 
          font-weight: 700;
      }

      .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: var(--color-accent); }
      .menu-toggle.active span:nth-child(2) { opacity: 0; }
      .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: var(--color-accent); }

      .page-hero { padding-top: 140px; }
      
      .page-hero h1 {
        font-size: 3.8rem; 
        line-height: 1.15;
      }

      .contact-container {
        grid-template-columns: 1fr; 
        gap: 60px;
      }
      
      .trust-grid {
        margin-top: 40px;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr; 
        gap: 50px;
      }
      .footer-brand { grid-column: span 2; text-align: center; }
      .footer-desc { margin: 0 auto 30px; }
      .footer-social { justify-content: center; }
      .footer-col { text-align: center; }
      .footer-col h3::after { left: 50%; transform: translateX(-50%); width: 50px; }
    }

    @media (max-width: 768px) {
      .page-hero h1 {
        font-size: 3.2rem;
      }
      
      .form-group {
        flex-direction: column; 
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .logo img { width: 35px; height: auto; }
      .company-name { font-size: 1rem; }
      .company-slogan { 
          font-size: 0.42rem; 
          letter-spacing: 0;
          white-space: nowrap; 
          width: 100%;
          line-height: 1.2;
      }
      
      .page-hero { padding: 150px 5% 60px; min-height: auto; }
      .page-hero h1 { font-size: 2rem; }
      
      .form-box { padding: 30px 20px; border-radius: 20px; }
      
      .footer-container { grid-template-columns: 1fr; text-align: center; }
      .footer-brand { grid-column: span 1; }
      
      .whatsapp-chat { bottom: 20px; right: 20px; }
      .whatsapp-chat img { width: 55px; height: 55px; }
    }
    