﻿:root {
  --blue:        #8BC5D3;
  --blue-dark:   #1A3A5C;
  --blue-mid:    #2A6080;
  --blue-xlight: #E8F4F8;
  --white:       #FFFFFF;
  --gray:        #6B7280;
  --gray-light:  #F4F8FB;
  --dark:        #0F2236;
  --text:        #1A2B3C;
  --orange:      #E67E22;
  --orange-dark: #D35400;
  --orange-mid:  #CA6F1E;
  --orange-light:#F0B27A;
  --orange-xlight:#FEF5E7;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(230,126,34,.15);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%; height:72px; transition:box-shadow .3s;
}
.nav-logo { display:flex; align-items:center; text-decoration:none; }
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a { text-decoration:none; color:var(--text); font-size:.88rem; font-weight:600; letter-spacing:.02em; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--orange); }
.nav-cta { background:var(--orange); color:var(--white)!important; padding:10px 24px; border-radius:50px; font-weight:700!important; transition:background .2s,transform .2s!important; }
.nav-cta:hover { background:var(--orange-dark)!important; transform:translateY(-1px); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.nav-hamburger span { width:24px; height:2px; background:var(--dark); border-radius:2px; transition:all .3s; }

.hero {
  min-height:100vh;
  background:linear-gradient(135deg,#0F2236 0%,#1a1000 40%,#3d2200 70%,#E67E22 100%);
  display:flex; align-items:center; padding:100px 5% 120px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(230,126,34,.18) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after {
  content:''; position:absolute; bottom:-150px; left:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(230,126,34,.1) 0%,transparent 70%);
  border-radius:50%;
}
.hero-shape { position:absolute; border-radius:50%; background:rgba(230,126,34,.07); animation:float 6s ease-in-out infinite; }
.hero-shape:nth-child(1){width:80px;height:80px;top:20%;right:15%;}
.hero-shape:nth-child(2){width:120px;height:120px;top:60%;right:8%;animation-delay:2s;}
.hero-shape:nth-child(3){width:50px;height:50px;top:35%;right:30%;animation-delay:4s;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}

.hero-inner { display:flex; align-items:center; gap:60px; width:100%; position:relative; z-index:2; max-width:1200px; margin:0 auto; }
.hero-content { flex:1; max-width:560px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(230,126,34,.2); border:1px solid rgba(230,126,34,.4);
  color:var(--orange-light); padding:8px 18px; border-radius:50px;
  font-size:.78rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:28px;
}
.hero-badge::before { content:''; width:8px; height:8px; background:var(--orange); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.hero h1 { font-family:'Nunito',sans-serif; font-size:3.2rem; font-weight:900; color:var(--white); line-height:1.1; margin-bottom:22px; animation:slideUp .8s ease both; }
.hero h1 span { color:var(--orange-light); }
.hero-desc { font-size:1.05rem; color:rgba(255,255,255,.7); line-height:1.75; margin-bottom:40px; animation:slideUp .8s ease both .15s; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; animation:slideUp .8s ease both .3s; }
.btn-primary { background:var(--orange); color:var(--white); padding:16px 36px; border-radius:50px; font-weight:800; font-size:.95rem; text-decoration:none; transition:all .3s; box-shadow:0 8px 30px rgba(230,126,34,.4); display:inline-flex; align-items:center; gap:8px; }
.btn-primary:hover { background:var(--white); color:var(--orange-dark); transform:translateY(-2px); }
.btn-secondary { border:2px solid rgba(255,255,255,.35); color:var(--white); padding:16px 36px; border-radius:50px; font-weight:700; font-size:.95rem; text-decoration:none; transition:all .3s; display:inline-flex; align-items:center; gap:8px; }
.btn-secondary:hover { border-color:var(--orange-light); background:rgba(230,126,34,.15); transform:translateY(-2px); }

.hero-visual { flex:1; display:flex; justify-content:center; padding-left:40px; animation:slideUp 1s ease both .4s; }
.hero-mockup {
  width:440px; background:rgba(255,255,255,.05);
  border:1px solid rgba(230,126,34,.3); border-radius:24px;
  overflow:hidden; backdrop-filter:blur(20px);
  box-shadow:0 40px 80px rgba(0,0,0,.4),0 0 0 1px rgba(230,126,34,.1);
}
.mockup-bar { background:rgba(0,0,0,.4); padding:12px 18px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(230,126,34,.15); }
.mockup-dot{width:11px;height:11px;border-radius:50%;}
.mockup-dot:nth-child(1){background:#ff5f57}
.mockup-dot:nth-child(2){background:#febc2e}
.mockup-dot:nth-child(3){background:#28c840}
.mockup-url { flex:1; background:rgba(255,255,255,.07); border-radius:6px; padding:5px 12px; color:rgba(255,255,255,.5); font-size:.73rem; text-align:center; font-family:monospace; }
.mockup-content { background:linear-gradient(160deg,#0a1628 0%,#1a1000 100%); }

/* Server dashboard mockup */
.server-header { padding:14px 18px; border-bottom:1px solid rgba(230,126,34,.1); display:flex; align-items:center; gap:10px; }
.server-logo { width:34px; height:34px; background:linear-gradient(135deg,#E67E22,#D35400); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.server-name { color:var(--white); font-weight:700; font-size:.82rem; }
.server-sub { color:rgba(255,255,255,.4); font-size:.62rem; margin-top:1px; }
.server-status { margin-left:auto; display:flex; align-items:center; gap:6px; }
.status-dot { width:8px; height:8px; background:#27ae60; border-radius:50%; animation:pulse 2s infinite; }
.status-text { color:#27ae60; font-size:.68rem; font-weight:700; }

.server-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(230,126,34,.06); }
.metric-box { background:rgba(10,22,40,.85); padding:12px 10px; text-align:center; }
.metric-val { color:var(--orange); font-size:1.1rem; font-weight:900; font-family:'Nunito',sans-serif; display:block; }
.metric-lbl { color:rgba(255,255,255,.38); font-size:.58rem; text-transform:uppercase; letter-spacing:.04em; margin-top:2px; display:block; }

.server-resources { padding:14px 16px; }
.res-label { color:rgba(255,255,255,.35); font-size:.62rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.res-row { margin-bottom:10px; }
.res-info { display:flex; justify-content:space-between; align-items:center; margin-bottom:5px; }
.res-name { color:rgba(255,255,255,.6); font-size:.68rem; }
.res-pct { color:var(--orange-light); font-size:.68rem; font-weight:700; }
.res-bar-bg { background:rgba(255,255,255,.07); border-radius:4px; height:6px; overflow:hidden; }
.res-bar { height:100%; border-radius:4px; background:linear-gradient(90deg,var(--orange-dark),var(--orange)); animation:growBar 1.5s ease both; }
@keyframes growBar{from{width:0}to{width:var(--w)}}

.server-sites { padding:12px 16px 14px; border-top:1px solid rgba(230,126,34,.08); }
.site-label { color:rgba(255,255,255,.35); font-size:.62rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }
.site-row { display:flex; align-items:center; gap:8px; padding:7px 10px; background:rgba(230,126,34,.06); border:1px solid rgba(230,126,34,.12); border-radius:8px; margin-bottom:5px; }
.site-icon { font-size:.75rem; }
.site-name { color:rgba(255,255,255,.7); font-size:.68rem; font-family:monospace; flex:1; }
.site-badge { background:rgba(39,174,96,.2); color:#27ae60; padding:2px 8px; border-radius:10px; font-size:.58rem; font-weight:700; }

.hero-stats { position:absolute; bottom:0; left:0; right:0; background:rgba(255,255,255,.05); backdrop-filter:blur(20px); border-top:1px solid rgba(230,126,34,.2); display:flex; justify-content:center; }
.hero-stat { flex:1; max-width:220px; padding:22px 20px; text-align:center; border-right:1px solid rgba(230,126,34,.15); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--orange-light); display:block; line-height:1; }
.hero-stat-lbl { color:rgba(255,255,255,.55); font-size:.78rem; margin-top:5px; display:block; }

.breadcrumb-bar { background:var(--gray-light); border-bottom:1px solid rgba(230,126,34,.15); padding:14px 5%; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.8rem; color:var(--gray); max-width:1200px; margin:0 auto; }
.breadcrumb a { color:var(--orange); text-decoration:none; font-weight:600; transition:color .2s; }
.breadcrumb a:hover { color:var(--orange-dark); }
.breadcrumb .current { color:var(--text); font-weight:700; }

section { padding:90px 5%; }
.section-tag { display:inline-block; background:var(--orange-xlight); color:var(--orange-dark); padding:6px 16px; border-radius:50px; font-size:.73rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; }
.section-title { font-family:'Nunito',sans-serif; font-size:2.5rem; font-weight:900; color:var(--dark); line-height:1.15; margin-bottom:14px; }
.section-title span { color:var(--orange); }
.section-sub { color:var(--gray); font-size:1rem; line-height:1.7; max-width:600px; }
.section-center { text-align:center; }
.section-center .section-sub { margin:0 auto; }

/* Why section */
.why-section { background:var(--white); }
.why-inner { max-width:800px; margin:0 auto; text-align:center; }
.why-deco { display:flex; align-items:center; justify-content:center; gap:24px; margin-bottom:40px; }
.why-triangle { width:0; height:0; border-left:40px solid transparent; border-right:0; border-bottom:70px solid var(--orange); opacity:.7; }
.why-circle { width:24px; height:24px; background:var(--dark); border-radius:50%; }
.why-inner .section-title { font-size:2rem; text-transform:uppercase; letter-spacing:.02em; }
.why-inner p { font-size:1rem; color:var(--gray); line-height:1.85; }
.why-inner p strong { color:var(--text); }

/* Garantit section */
.garantit-section { background:var(--orange-xlight); padding:90px 5%; }
.garantit-inner { max-width:1100px; margin:0 auto; }
.garantit-featured {
  background:linear-gradient(135deg,#D35400,#E67E22);
  border-radius:24px; padding:44px 48px; margin-bottom:40px;
  position:relative; overflow:hidden;
}
.garantit-featured::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:220px; height:220px; border:3px solid rgba(255,255,255,.15);
  border-radius:50%;
}
.garantit-featured::after {
  content:''; position:absolute; top:-20px; right:-20px;
  width:130px; height:130px; border:3px solid rgba(255,255,255,.1);
  border-radius:50%;
}
.garantit-featured h2 { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--white); line-height:1.3; position:relative; z-index:1; }

.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.benefit-card {
  background:var(--white); border-radius:20px; padding:32px 28px;
  border:1px solid rgba(230,126,34,.12); transition:all .3s;
}
.benefit-card:hover { border-color:var(--orange); box-shadow:0 16px 40px rgba(230,126,34,.1); transform:translateY(-4px); }
.benefit-icon { width:54px; height:54px; border-radius:16px; background:var(--orange-xlight); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin-bottom:18px; border:2px solid rgba(230,126,34,.15); }
.benefit-card h3 { font-family:'Nunito',sans-serif; font-size:1rem; font-weight:800; color:var(--dark); margin-bottom:10px; line-height:1.35; }
.benefit-card p { font-size:.86rem; color:var(--gray); line-height:1.7; }

/* Offers section */
.offers-section {
  background:linear-gradient(135deg,#0F2236 0%,#1a1000 50%,#3d2200 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.offers-section::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(230,126,34,.12) 0%,transparent 70%);
  border-radius:50%;
}
.offers-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.offers-title { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--orange-light); text-align:center; margin-bottom:50px; }
.offers-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.offer-card {
  border:1px solid rgba(230,126,34,.25); border-radius:22px; padding:36px 28px;
  text-align:center; transition:all .3s; position:relative; overflow:hidden;
  background:rgba(255,255,255,.04); backdrop-filter:blur(10px);
}
.offer-card:hover { border-color:var(--orange); transform:translateY(-6px); box-shadow:0 20px 50px rgba(230,126,34,.15); }
.offer-card.popular { border-color:var(--orange); background:rgba(230,126,34,.08); }
.offer-badge { position:absolute; top:16px; right:16px; background:var(--orange); color:var(--white); padding:4px 12px; border-radius:20px; font-size:.68rem; font-weight:800; }
.offer-icon { font-size:2.2rem; margin-bottom:16px; }
.offer-name { font-family:'Nunito',sans-serif; font-size:1.2rem; font-weight:900; color:var(--white); margin-bottom:8px; }
.offer-desc { font-size:.82rem; color:rgba(255,255,255,.5); line-height:1.6; margin-bottom:20px; }
.offer-features { list-style:none; text-align:left; display:flex; flex-direction:column; gap:8px; }
.offer-features li { font-size:.8rem; color:rgba(255,255,255,.65); display:flex; align-items:center; gap:8px; }
.offer-features li::before { content:'✓'; color:var(--orange); font-weight:800; flex-shrink:0; }

/* Process */
.process-section { background:var(--white); }
.process-inner { max-width:1100px; margin:0 auto; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; }
.process-step { background:var(--gray-light); border-radius:20px; padding:32px 26px; border:1px solid rgba(230,126,34,.12); transition:all .3s; text-align:center; }
.process-step:hover { border-color:var(--orange); box-shadow:0 10px 30px rgba(230,126,34,.12); transform:translateY(-4px); }
.step-num { width:52px; height:52px; background:linear-gradient(135deg,var(--orange-dark),var(--orange)); color:var(--white); border-radius:14px; display:flex; align-items:center; justify-content:center; font-family:'Nunito',sans-serif; font-size:1.4rem; font-weight:900; margin:0 auto 18px; }
.process-step h3 { font-family:'Nunito',sans-serif; font-size:1.05rem; font-weight:800; color:var(--dark); margin-bottom:10px; }
.process-step p { font-size:.84rem; color:var(--gray); line-height:1.65; }

/* Testimonials */
.testi-section { background:var(--gray-light); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:50px auto 0; }
.testi-card { background:var(--white); border-radius:20px; padding:30px 26px; border:1px solid rgba(230,126,34,.2); transition:all .3s; }
.testi-card:hover { box-shadow:0 16px 40px rgba(230,126,34,.12); transform:translateY(-4px); }
.testi-quote { font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900; color:var(--orange-light); line-height:.6; margin-bottom:16px; }
.testi-text { font-size:.88rem; color:var(--gray); line-height:1.7; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; background:linear-gradient(135deg,var(--orange-dark),var(--orange)); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.82rem; flex-shrink:0; }
.testi-name { font-weight:700; font-size:.88rem; color:var(--dark); }
.testi-role { font-size:.76rem; color:var(--gray); }
.testi-stars { color:#f59e0b; font-size:.78rem; margin-top:3px; }

/* FAQ */
.faq-section { background:var(--white); }
.faq-inner { max-width:780px; margin:50px auto 0; }
.faq-item { border:1px solid rgba(230,126,34,.2); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover, .faq-item.open { border-color:var(--orange); }
.faq-q { padding:18px 22px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; font-weight:700; font-size:.9rem; color:var(--dark); background:var(--white); user-select:none; }
.faq-q:hover, .faq-item.open .faq-q { background:var(--orange-xlight); }
.faq-arrow { color:var(--orange); font-size:.9rem; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-a { max-height:220px; }
.faq-a p { padding:0 22px 18px; font-size:.86rem; color:var(--gray); line-height:1.75; }

/* CTA */
.cta-strip {
  background:linear-gradient(135deg,var(--dark) 0%,#1a1000 50%,#3d2200 100%);
  text-align:center; padding:90px 5%; position:relative; overflow:hidden;
}
.cta-strip::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle,rgba(230,126,34,.1) 0%,transparent 70%); border-radius:50%; }
.cta-strip h2 { font-family:'Nunito',sans-serif; font-size:2.6rem; font-weight:900; color:var(--white); line-height:1.2; margin-bottom:16px; position:relative; }
.cta-strip h2 span { color:var(--orange-light); }
.cta-strip p { color:rgba(255,255,255,.7); font-size:1rem; margin-bottom:36px; position:relative; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }
.btn-orange { background:var(--orange); color:var(--white); padding:16px 36px; border-radius:50px; font-weight:800; font-size:.95rem; text-decoration:none; transition:all .3s; box-shadow:0 8px 30px rgba(230,126,34,.4); display:inline-flex; align-items:center; gap:8px; }
.btn-orange:hover { background:var(--orange-light); color:var(--dark); transform:translateY(-2px); }
.btn-outline-white { border:2px solid rgba(255,255,255,.4); color:var(--white); padding:16px 36px; border-radius:50px; font-weight:700; font-size:.95rem; text-decoration:none; transition:all .3s; display:inline-flex; align-items:center; gap:8px; }
.btn-outline-white:hover { border-color:var(--orange-light); background:rgba(230,126,34,.15); transform:translateY(-2px); }

footer { background:var(--dark); color:rgba(255,255,255,.7); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:50px; padding:60px 5% 40px; max-width:1300px; margin:0 auto; }
.footer-brand p { font-size:.85rem; line-height:1.7; margin-top:18px; color:rgba(255,255,255,.5); max-width:280px; }
.footer-col h4 { color:var(--white); font-family:'Nunito',sans-serif; font-weight:800; font-size:.95rem; margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.85rem; transition:color .2s; }
.footer-col ul a:hover { color:var(--orange-light); }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:10px; font-size:.83rem; color:rgba(255,255,255,.5); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:22px 5%; display:flex; align-items:center; justify-content:space-between; max-width:1300px; margin:0 auto; font-size:.82rem; }
.footer-socials { display:flex; gap:10px; }
.social-btn { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); color:rgba(255,255,255,.6); display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:.8rem; font-weight:700; transition:all .2s; }
.social-btn:hover { background:var(--orange); color:var(--white); }
.wa-float { position:fixed; bottom:28px; right:28px; width:52px; height:52px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; box-shadow:0 4px 20px rgba(37,211,102,.4); text-decoration:none; z-index:999; transition:all .2s; }
.wa-float:hover { transform:scale(1.1); }

.fade-up { opacity:0; transform:translateY(30px); transition:opacity .7s ease,transform .7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

@media(max-width:900px){
  .hero-visual { display:none; }
  .hero-inner { flex-direction:column; }
  .hero h1 { font-size:2.3rem; }
  .benefits-grid { grid-template-columns:1fr; }
  .offers-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:30px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .hero-stats { position:relative; flex-wrap:wrap; }
}