/* FischerDesk – Brand CSS */
:root {
  --blue-deep:   #0d2b45;
  --blue-mid:    #1a4a7a;
  --blue-bright: #2980b9;
  --blue-light:  #d6eaf8;
  --green-dark:  #1e5631;
  --green-mid:   #27ae60;
  --silver:      #7f8c8d;
  --silver-light:#ecf0f1;
  --text:        #1c2b36;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(13,43,69,.13);
  --radius:      10px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: #fff; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Nav ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(13,43,69,.96); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 5%; border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-logo { display: flex; align-items: center; gap: .7rem; color: #fff; font-size: 1.35rem; font-weight: 700; letter-spacing: -.3px; }
.nav-logo svg { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .93rem; transition: color .2s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: var(--blue-bright); color: #fff !important; padding: .45rem 1.1rem; border-radius: 6px; font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: #1f6fa0 !important; text-decoration: none !important; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--blue-deep) 0%, #1a4a7a 50%, #1a5c8a 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 5% 5rem; position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,186.7C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom/cover no-repeat;
}
/* floating circles */
.hero::after {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,128,185,.18) 0%, transparent 70%);
  top: -150px; right: -150px; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #a8d8f0; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1.2rem;
}
.hero h1 em { color: #7ec8e3; font-style: normal; }
.hero p { color: rgba(255,255,255,.78); font-size: 1.18rem; max-width: 580px; margin: 0 auto 2.2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--blue-bright); color: #fff; padding: .85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; transition: transform .15s, background .2s; display: inline-block; }
.btn-primary:hover { background: #1f6fa0; transform: translateY(-1px); text-decoration: none; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; padding: .85rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; border: 1px solid rgba(255,255,255,.3); transition: background .2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,.18); text-decoration: none; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.stat-pill { text-align: center; }
.stat-pill .num { color: #fff; font-size: 2rem; font-weight: 800; }
.stat-pill .lbl { color: rgba(255,255,255,.6); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Wave Divider ─── */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ─── Sections ─── */
section { padding: 5rem 5%; }
.section-label { color: var(--blue-bright); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
h2.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--blue-deep); letter-spacing: -.02em; margin-bottom: 1rem; }
.section-sub { color: var(--silver); font-size: 1.05rem; max-width: 620px; }

/* ─── Features ─── */
.features { background: var(--silver-light); }
.features-head { text-align: center; margin-bottom: 3.5rem; }
.features-head .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.feat-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); border-top: 3px solid transparent;
  transition: transform .2s, border-color .2s;
}
.feat-card:hover { transform: translateY(-3px); border-top-color: var(--blue-bright); }
.feat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-deep); margin-bottom: .5rem; }
.feat-card p { font-size: .9rem; color: var(--silver); line-height: 1.6; }
.feat-badge { display: inline-block; background: #e8f4fd; color: var(--blue-mid); font-size: .72rem; font-weight: 700; text-transform: uppercase; padding: .2rem .55rem; border-radius: 4px; margin-top: .7rem; }
.feat-badge.legal { background: #fef9e7; color: #b7950b; }
.feat-badge.new { background: #e8f8f5; color: var(--green-dark); }

/* ─── USP Banner ─── */
.usp-banner { background: linear-gradient(135deg, var(--green-dark), #1a7a4a); padding: 4rem 5%; text-align: center; color: #fff; }
.usp-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.usp-banner p { font-size: 1.05rem; opacity: .88; max-width: 700px; margin: 0 auto 1.8rem; }
.usp-features { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.usp-item { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.usp-item span { font-size: 1.3rem; }

/* ─── Testimonial ─── */
.testimonial-section { background: #fff; }
.testimonial-wrap { max-width: 800px; margin: 3rem auto 0; background: var(--silver-light); border-radius: 14px; padding: 2.5rem 3rem; border-left: 5px solid var(--blue-bright); position: relative; }
.testimonial-wrap::before { content: '\201C'; position: absolute; top: .5rem; left: 1.5rem; font-size: 6rem; color: var(--blue-light); font-family: Georgia, serif; line-height: 1; }
.testimonial-text { font-size: 1.08rem; font-style: italic; color: #2c3e50; margin-bottom: 1.2rem; line-height: 1.75; }
.testimonial-author { font-weight: 700; color: var(--blue-deep); }
.testimonial-club { font-size: .88rem; color: var(--silver); }

/* ─── Pricing ─── */
.pricing { background: var(--silver-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 3rem auto 0; }
.price-card {
  background: #fff; border-radius: 14px; padding: 2.2rem 2rem;
  box-shadow: var(--shadow); text-align: center; position: relative;
  border: 2px solid transparent; transition: border-color .2s;
}
.price-card.featured { border-color: var(--blue-bright); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue-bright); color: #fff; font-size: .75rem; font-weight: 700; padding: .3rem .9rem; border-radius: 20px; white-space: nowrap; }
.price-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--silver); margin-bottom: .5rem; }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--blue-deep); line-height: 1; }
.price-amount sup { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: .6rem; }
.price-amount sub { font-size: 1rem; font-weight: 500; color: var(--silver); }
.price-desc { font-size: .9rem; color: var(--silver); margin: .7rem 0 1.5rem; }
.price-features { text-align: left; list-style: none; margin-bottom: 2rem; }
.price-features li { padding: .45rem 0; font-size: .92rem; display: flex; align-items: flex-start; gap: .6rem; border-bottom: 1px solid #f0f3f4; }
.price-features li:last-child { border: none; }
.price-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.btn-plan { display: block; background: var(--blue-deep); color: #fff; padding: .85rem; border-radius: 8px; font-weight: 700; text-align: center; transition: background .2s; }
.btn-plan:hover { background: var(--blue-mid); text-decoration: none; }
.price-card.featured .btn-plan { background: var(--blue-bright); }
.price-card.featured .btn-plan:hover { background: #1f6fa0; }

/* ─── Demo CTA ─── */
.demo-cta { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); text-align: center; color: #fff; padding: 5rem 5%; }
.demo-cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.demo-cta p { opacity: .82; font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── Contact Form ─── */
.contact { background: #fff; }
.contact-wrap { max-width: 700px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #d4dde4; border-radius: 7px; padding: .7rem .9rem;
  font-size: .95rem; font-family: inherit; color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none;
  background: #fafcfd;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(41,128,185,.15);
}
.form-group.full { grid-column: 1 / -1; }
.form-notice { font-size: .8rem; color: var(--silver); margin-top: .5rem; }
.btn-submit { background: var(--blue-bright); color: #fff; border: none; padding: .9rem 2.5rem; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: #1f6fa0; }

/* ─── Footer ─── */
footer { background: var(--blue-deep); color: rgba(255,255,255,.65); padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
