﻿:root {
  --blue:       #8BC5D3;
  --blue-dark:  #1A3A5C;
  --blue-mid:   #2A6080;
  --blue-xlight:#E8F4F8;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F4F8FB;
  --dark:       #0F2236;
  --text:       #1A2B3C;
  --coral:      #E74C3C;
  --coral-dark: #C0392B;
  --coral-mid:  #D44336;
  --coral-light:#F1948A;
  --coral-xlight:#FDEDEC;
}
*, *::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(231,76,60,.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(--coral); }
.nav-cta { background:var(--coral); 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(--coral-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%,#1a0a0a 40%,#3d0c0c 70%,#E74C3C 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(231,76,60,.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(231,76,60,.1) 0%,transparent 70%);
  border-radius:50%;
}
.hero-shape { position:absolute; border-radius:50%; background:rgba(231,76,60,.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(231,76,60,.2); border:1px solid rgba(231,76,60,.4);
  color:var(--coral-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(--coral); 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(--coral-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(--coral); 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(231,76,60,.4); display:inline-flex; align-items:center; gap:8px; }
.btn-primary:hover { background:var(--white); color:var(--coral-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(--coral-light); background:rgba(231,76,60,.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(231,76,60,.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(231,76,60,.1);
}
.mockup-bar { background:rgba(0,0,0,.4); padding:12px 18px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(231,76,60,.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%,#1a0a0a 100%); }

.email-header { padding:14px 18px; border-bottom:1px solid rgba(231,76,60,.1); display:flex; align-items:center; gap:10px; }
.email-logo { width:34px; height:34px; background:linear-gradient(135deg,#E74C3C,#C0392B); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.email-app-name { color:var(--white); font-weight:700; font-size:.82rem; }
.email-app-sub { color:rgba(255,255,255,.4); font-size:.62rem; margin-top:1px; }
.email-compose { margin-left:auto; background:var(--coral); color:var(--white); border:none; border-radius:20px; padding:5px 14px; font-size:.68rem; font-weight:700; cursor:pointer; }

.email-inbox { padding:12px 16px; }
.inbox-label { color:rgba(255,255,255,.35); font-size:.62rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.email-item { padding:10px 12px; border-radius:10px; margin-bottom:6px; display:flex; align-items:flex-start; gap:10px; transition:background .2s; }
.email-item.unread { background:rgba(231,76,60,.1); border:1px solid rgba(231,76,60,.18); }
.email-item.read { background:rgba(255,255,255,.03); }
.email-avatar { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:800; flex-shrink:0; }
.email-avatar.a1 { background:linear-gradient(135deg,#3498db,#2980b9); color:#fff; }
.email-avatar.a2 { background:linear-gradient(135deg,#27ae60,#1e8449); color:#fff; }
.email-avatar.a3 { background:linear-gradient(135deg,#9b59b6,#7d3c98); color:#fff; }
.email-info { flex:1; min-width:0; }
.email-from { color:rgba(255,255,255,.8); font-size:.72rem; font-weight:700; }
.email-subject { color:rgba(255,255,255,.5); font-size:.65rem; margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.email-time { color:rgba(255,255,255,.3); font-size:.6rem; flex-shrink:0; }
.email-addr-box { padding:12px 16px 14px; border-top:1px solid rgba(231,76,60,.08); }
.addr-label { color:rgba(255,255,255,.35); font-size:.6rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }
.addr-row { display:flex; align-items:center; gap:8px; padding:7px 10px; background:rgba(231,76,60,.08); border:1px solid rgba(231,76,60,.15); border-radius:8px; margin-bottom:6px; }
.addr-icon { font-size:.75rem; }
.addr-text { color:var(--coral-light); font-size:.68rem; font-family:monospace; font-weight:600; }
.addr-badge { margin-left:auto; background:rgba(231,76,60,.2); color:var(--coral-light); 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(231,76,60,.2); display:flex; justify-content:center; }
.hero-stat { flex:1; max-width:220px; padding:22px 20px; text-align:center; border-right:1px solid rgba(231,76,60,.15); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--coral-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(231,76,60,.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(--coral); text-decoration:none; font-weight:600; transition:color .2s; }
.breadcrumb a:hover { color:var(--coral-dark); }
.breadcrumb .current { color:var(--text); font-weight:700; }

section { padding:90px 5%; }
.section-tag { display:inline-block; background:var(--coral-xlight); color:var(--coral-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(--coral); }
.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:0px solid transparent; border-bottom:70px solid var(--coral); opacity:.7; }
.why-circle { width:24px; height:24px; background:var(--dark); border-radius:50%; }
.why-inner .section-title { font-size:2.2rem; }
.why-inner p { font-size:1rem; color:var(--gray); line-height:1.85; }

/* Garantit section */
.garantit-section { background:var(--coral-xlight); padding:90px 5%; }
.garantit-inner { max-width:1100px; margin:0 auto; }
.garantit-featured {
  background:linear-gradient(135deg,#6C3483,#9B59B6);
  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;
  max-width:520px;
}
.garantit-featured h2 strong { color:#DDA0DD; }

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

/* 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(231,76,60,.12); transition:all .3s; text-align:center; }
.process-step:hover { border-color:var(--coral); box-shadow:0 10px 30px rgba(231,76,60,.12); transform:translateY(-4px); }
.step-num { width:52px; height:52px; background:linear-gradient(135deg,var(--coral-dark),var(--coral)); 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(231,76,60,.2); transition:all .3s; }
.testi-card:hover { box-shadow:0 16px 40px rgba(231,76,60,.12); transform:translateY(-4px); }
.testi-quote { font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900; color:var(--coral-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(--coral-dark),var(--coral)); 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(231,76,60,.2); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover, .faq-item.open { border-color:var(--coral); }
.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(--coral-xlight); }
.faq-arrow { color:var(--coral); 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,padding .3s; }
.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%,#1a0a0a 50%,#3d0c0c 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(231,76,60,.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(--coral-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-coral { background:var(--coral); 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(231,76,60,.4); display:inline-flex; align-items:center; gap:8px; }
.btn-coral:hover { background:var(--coral-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(--coral-light); background:rgba(231,76,60,.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(--coral-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(--coral); 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; }
  .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; }
}