/* ===================================================
   EURE VENTURES — AI On Autopilot
   Brand colors: Deep navy, silver/chrome, electric blue
   =================================================== */

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

:root{
  --navy:#0b1a3b;
  --navy-mid:#0f2252;
  --navy-deep:#070f22;
  --blue:#317ed1;
  --blue-bright:#65bdfc;
  --silver:#c8cdd6;
  --silver-light:#e8eaed;
  --white:#ffffff;
  --text-muted:rgba(200,210,230,0.7);
  --font-display:'Cormorant Garamond',serif;
  --font-body:'DM Sans',sans-serif;
}

html{scroll-behavior:smooth}
body{background:var(--navy);color:var(--white);font-family:var(--font-body);font-weight:300;overflow-x:hidden}

/* ===== NAV ===== */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:1rem 4rem;display:flex;justify-content:space-between;align-items:center;
  background:rgba(11,26,59,0.92);backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(49,126,209,0.2);
}
.nav-logo{display:flex;align-items:center;text-decoration:none}
.nav-logo-text{font-family:var(--font-display);font-size:1.4rem;font-weight:600;letter-spacing:0.12em;color:var(--silver-light);transition:color 0.2s}
.nav-logo-text .dot{color:var(--blue-bright)}
.nav-logo:hover .nav-logo-text{color:#fff}
.nav-links{display:flex;gap:2.5rem;list-style:none}
.nav-links a{color:var(--text-muted);text-decoration:none;font-size:0.8rem;letter-spacing:0.12em;text-transform:uppercase;transition:color 0.2s}
.nav-links a:hover{color:var(--blue-bright)}
.nav-cta{
  background:var(--blue);color:var(--white);padding:0.6rem 1.5rem;border-radius:2px;
  font-size:0.78rem;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;
  font-weight:500;transition:background 0.2s;
}
.nav-cta:hover{background:var(--blue-bright)}

/* ===== HERO ===== */
.hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:5rem 4rem;position:relative;overflow:hidden}
.hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 70% 50%,rgba(49,126,209,0.1) 0%,transparent 70%);
}
.hero-logo{max-width:720px;width:90%;margin-bottom:2.5rem;position:relative;z-index:2}
.hero-logo img{width:100%;height:auto;display:block;filter:drop-shadow(0 4px 30px rgba(49,126,209,0.25))}
.hero-tag{
  display:inline-flex;align-items:center;gap:0.6rem;
  font-size:0.75rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--blue-bright);
  margin-bottom:1.5rem;position:relative;z-index:2;
}
.hero-tag::before{content:'';width:24px;height:1px;background:var(--blue-bright)}
.hero h1{
  font-family:var(--font-display);font-size:clamp(2.5rem,6vw,5rem);font-weight:300;
  line-height:1.05;max-width:750px;margin-bottom:1.5rem;position:relative;z-index:2;
}
.hero h1 strong{
  font-weight:700;
  background:linear-gradient(135deg,var(--silver-light) 0%,var(--blue-bright) 50%,var(--silver) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-sub{font-size:1.05rem;color:var(--text-muted);max-width:520px;line-height:1.75;margin-bottom:3rem;position:relative;z-index:2}
.hero-actions{display:flex;gap:1.25rem;flex-wrap:wrap;position:relative;z-index:2}

/* ===== BUTTONS ===== */
.btn-primary{
  background:var(--blue);color:var(--white);padding:1rem 2.25rem;border-radius:2px;
  font-size:0.82rem;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;
  font-weight:500;transition:all 0.2s;display:inline-block;
}
.btn-primary:hover{background:var(--blue-bright);transform:translateY(-1px)}
.btn-outline{
  border:1px solid rgba(49,126,209,0.5);color:var(--blue-bright);padding:1rem 2.25rem;border-radius:2px;
  font-size:0.82rem;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;
  font-weight:400;transition:all 0.2s;display:inline-block;
}
.btn-outline:hover{border-color:var(--blue-bright);background:rgba(49,126,209,0.08)}

.hero-divider{width:60px;height:1px;background:var(--blue);margin:4rem 0 0;position:relative;z-index:2}
.hero-stats{display:flex;gap:3rem;margin-top:2rem;position:relative;z-index:2}
.stat-num{font-family:var(--font-display);font-size:2.2rem;font-weight:600}
.stat-label{font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--text-muted)}

/* ===== SECTION BASE ===== */
section{padding:7rem 4rem}
.section-tag{
  font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--blue-bright);
  margin-bottom:1rem;display:flex;align-items:center;gap:0.6rem;
}
.section-tag::before{content:'';width:24px;height:1px;background:var(--blue-bright)}
.section-title{font-family:var(--font-display);font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.15;margin-bottom:1.5rem}
.section-title strong{font-weight:700}

/* ===== MISSION ===== */
.mission{background:var(--navy-mid);border-top:1px solid rgba(49,126,209,0.2);border-bottom:1px solid rgba(49,126,209,0.2)}
.mission-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
.mission-text{color:var(--text-muted);line-height:1.8;font-size:0.95rem;max-width:480px;margin-bottom:0}
.mission-values{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-top:2.5rem}
.value-card{
  border:1px solid rgba(49,126,209,0.2);padding:1.5rem;border-radius:4px;
  position:relative;overflow:hidden;transition:border-color 0.2s;
}
.value-card::before{content:'';position:absolute;top:0;left:0;width:3px;height:100%;background:var(--blue)}
.value-card:hover{border-color:rgba(49,126,209,0.5)}
.value-card h4{font-size:0.78rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--blue-bright);margin-bottom:0.5rem}
.value-card p{font-size:0.88rem;color:var(--text-muted);line-height:1.6}
.mission-visual{display:flex;justify-content:center;align-items:center}
.mission-visual-logo{max-width:400px;width:100%;opacity:0.85;filter:drop-shadow(0 4px 40px rgba(49,126,209,0.25))}

/* ===== SERVICES ===== */
.services-section{background:var(--navy)}
.services-intro{color:var(--text-muted);font-size:0.92rem;line-height:1.75;max-width:560px;margin-bottom:5rem}
.tier{margin-bottom:5rem}
.tier:last-child{margin-bottom:0}
.tier-header{
  display:flex;align-items:flex-start;gap:2.5rem;
  margin-bottom:2.5rem;padding-bottom:1.5rem;
  border-bottom:1px solid rgba(49,126,209,0.15);
}
.tier-num{font-family:var(--font-display);font-size:4rem;font-weight:700;color:rgba(49,126,209,0.55);line-height:1;flex-shrink:0;min-width:4rem}
.tier-label h3{font-family:var(--font-display);font-size:1.5rem;font-weight:600;color:var(--silver-light);margin-bottom:0.4rem}
.tier-label p{font-size:0.88rem;color:var(--text-muted);line-height:1.6;max-width:600px;font-style:italic}
.tier-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.svc-card{
  background:rgba(255,255,255,0.025);border:1px solid rgba(49,126,209,0.18);
  padding:2rem;border-radius:4px;transition:all 0.3s;position:relative;overflow:hidden;
}
.svc-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--blue-bright));
  transform:scaleX(0);transition:transform 0.3s;
}
.svc-card:hover{background:rgba(49,126,209,0.06);border-color:rgba(49,126,209,0.4);transform:translateY(-2px)}
.svc-card:hover::after{transform:scaleX(1)}
.svc-name{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--blue-bright);margin-bottom:0.5rem}
.svc-card h4{font-family:var(--font-display);font-size:1.25rem;font-weight:600;color:var(--silver-light);margin-bottom:0.75rem;line-height:1.3}
.svc-card p{font-size:0.875rem;color:var(--text-muted);line-height:1.75}
.svc-bullets{list-style:none;margin-top:1rem;display:flex;flex-direction:column;gap:0.4rem}
.svc-bullets li{font-size:0.8rem;color:var(--text-muted);padding-left:1.1rem;position:relative;line-height:1.5}
.svc-bullets li::before{content:'→';position:absolute;left:0;color:var(--blue-bright);font-size:0.7rem;top:0.05rem}
.svc-ideal{margin-top:1.25rem;font-size:0.78rem;color:rgba(101,189,252,0.6);font-style:italic;line-height:1.5}
.services-cta{
  margin-top:4rem;background:rgba(49,126,209,0.07);border:1px solid rgba(49,126,209,0.25);
  border-radius:4px;padding:2rem 2.5rem;
  display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap;
}
.services-cta p{color:var(--text-muted);font-size:0.9rem;max-width:500px;line-height:1.65}
.services-cta strong{color:var(--silver-light);display:block;margin-bottom:0.35rem}

/* ===== WHY ===== */
.why{background:var(--navy-mid)}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;margin-top:4rem}
.why-list{display:flex;flex-direction:column;gap:2rem}
.why-item{display:flex;gap:1.5rem;align-items:flex-start}
.why-num{font-family:var(--font-display);font-size:2rem;font-weight:700;color:var(--blue);line-height:1;min-width:2rem}
.why-content h4{font-size:0.95rem;font-weight:500;color:var(--silver-light);margin-bottom:0.4rem}
.why-content p{font-size:0.875rem;color:var(--text-muted);line-height:1.7}
.why-quote{
  background:rgba(49,126,209,0.08);border:1px solid rgba(49,126,209,0.3);
  border-radius:4px;padding:3rem;position:relative;
}
.why-quote::before{
  content:'\201C';font-family:var(--font-display);font-size:6rem;color:var(--blue);
  position:absolute;top:-1rem;left:1.5rem;line-height:1;
}
.why-quote blockquote{font-family:var(--font-display);font-size:1.5rem;font-weight:300;line-height:1.55;color:var(--silver-light);padding-top:2rem}
.why-quote cite{display:block;margin-top:1.5rem;font-size:0.75rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--blue-bright);font-style:normal}

/* ===== PROCESS ===== */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:4rem;position:relative}
.process-steps::before{
  content:'';position:absolute;top:2rem;left:12.5%;right:12.5%;
  height:1px;background:linear-gradient(90deg,var(--blue),var(--blue-bright),var(--blue));z-index:0;
}
.step{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 1.25rem;position:relative;z-index:1}
.step-circle{
  width:4rem;height:4rem;border-radius:50%;background:var(--navy);
  border:2px solid var(--blue);display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;
}
.step-circle span{font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:var(--blue-bright)}
.step h4{font-size:0.8rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--silver-light);margin-bottom:0.5rem}
.step p{font-size:0.8rem;color:var(--text-muted);line-height:1.6}

/* ===== CTA ===== */
.cta-section{text-align:center;background:linear-gradient(135deg,var(--navy-mid) 0%,var(--navy) 100%);border-top:1px solid rgba(49,126,209,0.2)}
.cta-section .section-title{max-width:600px;margin:0 auto 0.75rem}
.cta-sub{font-size:0.95rem;color:var(--text-muted);margin-bottom:3rem;max-width:500px;margin-left:auto;margin-right:auto;line-height:1.7}
.cta-actions{display:flex;gap:1.25rem;justify-content:center;flex-wrap:wrap}

/* ===== FOOTER ===== */
footer{
  background:var(--navy-deep);padding:3rem 4rem;
  display:flex;justify-content:space-between;align-items:center;
  border-top:1px solid rgba(49,126,209,0.15);flex-wrap:wrap;gap:1.5rem;
}
.footer-logo-img{height:40px;width:auto;display:block;opacity:0.85;transition:opacity 0.2s}
.footer-logo-img:hover{opacity:1}
.footer-tagline{font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--text-muted);margin-top:0.5rem}
.footer-links{display:flex;gap:2rem}
.footer-links a{color:var(--text-muted);text-decoration:none;font-size:0.78rem;letter-spacing:0.08em;text-transform:uppercase;transition:color 0.2s}
.footer-links a:hover{color:var(--blue-bright)}
.footer-copy{font-size:0.72rem;color:rgba(150,165,190,0.4)}

/* ===== PROFESSIONAL POLISH ===== */
body::before{
  content:'';position:fixed;inset:0;pointer-events:none;z-index:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(49,126,209,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
}
main,footer{position:relative;z-index:1}

.hero h1{letter-spacing:-0.01em}
.section-title{letter-spacing:-0.01em}

.svc-card{box-shadow:0 1px 3px rgba(0,0,0,0.15)}
.svc-card:hover{box-shadow:0 8px 24px rgba(0,0,0,0.25)}

.value-card{background:rgba(255,255,255,0.015);box-shadow:0 1px 3px rgba(0,0,0,0.12)}

.step-circle{box-shadow:0 0 0 4px var(--navy),0 0 16px rgba(49,126,209,0.2);transition:box-shadow 0.3s,border-color 0.3s}
.step:hover .step-circle{border-color:var(--blue-bright);box-shadow:0 0 0 4px var(--navy),0 0 24px rgba(49,126,209,0.35)}

.why-quote{box-shadow:0 2px 12px rgba(0,0,0,0.15)}

.btn-primary{box-shadow:0 2px 8px rgba(49,126,209,0.3);transition:all 0.2s}
.btn-primary:hover{box-shadow:0 4px 16px rgba(49,126,209,0.4)}

footer{background:linear-gradient(180deg,var(--navy-deep) 0%,#050c1a 100%)}

.services-cta{box-shadow:0 1px 6px rgba(0,0,0,0.12)}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.hero-logo{animation:fadeUp 0.8s 0.05s ease both}
.hero-tag{animation:fadeUp 0.7s 0.2s ease both}
.hero h1{animation:fadeUp 0.7s 0.3s ease both}
.hero-sub{animation:fadeUp 0.7s 0.4s ease both}
.hero-actions{animation:fadeUp 0.7s 0.5s ease both}
.hero-divider{animation:fadeUp 0.7s 0.6s ease both}
.hero-stats{animation:fadeUp 0.7s 0.7s ease both}

/* ===== MOBILE ===== */
@media(max-width:768px){
  nav{padding:1rem 1.5rem}
  .nav-logo-text{font-size:1.1rem}
  .nav-links{display:none}
  section,.hero{padding:4rem 1.5rem}
  .hero-logo{max-width:320px}
  .mission-grid,.why-grid,.tier-cards{grid-template-columns:1fr}
  .mission-visual{display:none}
  .process-steps{grid-template-columns:1fr 1fr;gap:2rem}
  .process-steps::before{display:none}
  .hero-stats{gap:1.5rem}
  footer{flex-direction:column;text-align:center}
  .services-cta{flex-direction:column;text-align:center}
  .tier-header{flex-direction:column;gap:0.75rem}
}
