/* ─── RESET & ROOT ─────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#F0F4F8;
  --white:#fff;
  --navy:#1A3550;
  --navy2:#254869;
  --steel:#2276B8;
  --steel-light:#EAF3FC;
  --steel-border:#B8D8F4;
  --accent:#D4500A;
  --accent-light:#FEF0E8;
  --text:#1A2B3C;
  --muted:#607A91;
  --border:#D6E2EE;
  --ff:'Inter',system-ui,sans-serif;
  --radius:8px;
  --radius-lg:12px;
}
body{font-family:var(--ff);background:var(--bg);color:var(--text);font-size:15px;line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ─── NAVBAR ────────────────────────────────────────────── */
.fl-nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:200}
.fl-nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:66px}
.fl-logo img{height:44px;object-fit:contain}
.fl-logo-fb{font-size:17px;font-weight:800;color:var(--navy)}
.fl-logo-fb em{font-style:normal;color:var(--accent)}
.fl-nav-links{display:flex;align-items:center;gap:0}
.fl-nav-link{color:var(--muted);font-size:13px;padding:0 13px;height:66px;display:flex;align-items:center;border-bottom:2px solid transparent;white-space:nowrap}
.fl-nav-link:hover,.fl-nav-link.active{color:var(--navy);border-bottom-color:var(--steel)}
/* Dropdown */
.fl-dd{position:relative;height:66px;display:flex;align-items:center}
.fl-dd-trigger{color:var(--muted);font-size:13px;padding:0 13px;height:66px;display:flex;align-items:center;gap:5px;cursor:pointer;white-space:nowrap;border:none;background:none;font-family:var(--ff);border-bottom:2px solid transparent}
.fl-dd:hover .fl-dd-trigger{color:var(--navy);border-bottom-color:var(--steel)}
.fl-dd-arrow{font-size:11px;transition:transform .2s}
.fl-dd:hover .fl-dd-arrow{transform:rotate(180deg)}
.fl-dd-panel{position:absolute;top:calc(100% + 1px);left:0;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:0 8px 32px rgba(26,53,80,.12);min-width:220px;padding:6px;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .18s,transform .18s,visibility .18s;z-index:300}
.fl-dd:hover .fl-dd-panel{opacity:1;visibility:visible;transform:translateY(0)}
.fl-dd-wide{min-width:440px;display:grid;grid-template-columns:1fr 1fr;gap:2px;padding:8px}
.fl-dd-item{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:7px;color:var(--text);font-size:13px;transition:background .15s}
.fl-dd-item:hover{background:var(--steel-light)}
.fl-dd-item--cta{background:var(--steel-light)}
.fl-di-icon{width:30px;height:30px;border-radius:6px;background:var(--steel-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:15px;color:var(--steel)}
.fl-dd-item--cta .fl-di-icon{background:#C8E4F5;color:var(--accent)}
.fl-di-text{display:flex;flex-direction:column}
.fl-di-title{font-weight:600;font-size:13px;color:var(--navy)}
.fl-dd-item--cta .fl-di-title{color:var(--accent)}
.fl-di-sub{font-size:11px;color:var(--muted);margin-top:1px}
/* Lang + CTA */
.fl-nav-right{display:flex;align-items:center;gap:8px}
.fl-lang{display:flex;gap:2px;padding-right:10px;border-right:1px solid var(--border)}
.fl-lang a{font-size:11px;padding:4px 9px;border-radius:4px;color:var(--muted);font-weight:700;letter-spacing:.5px}
.fl-lang a.active{background:var(--navy);color:#fff}
.fl-nav-cta{background:var(--accent);color:#fff;font-size:13px;font-weight:700;padding:9px 18px;border-radius:7px;display:flex;align-items:center;gap:6px;white-space:nowrap}
.fl-nav-cta i{font-size:14px}

/* ─── BUTTONS ───────────────────────────────────────────── */
.fl-btn-primary{background:var(--accent);color:#fff;font-weight:700;font-size:14px;padding:12px 22px;border-radius:var(--radius);display:inline-flex;align-items:center;gap:7px}
.fl-btn-secondary{color:var(--navy);font-size:14px;padding:12px 22px;border-radius:var(--radius);border:1.5px solid var(--border);display:inline-flex;align-items:center;gap:7px;font-weight:600}
.fl-btn-secondary:hover{border-color:var(--steel);color:var(--steel)}
.fl-btn-white{background:#fff;color:var(--navy);font-weight:700;font-size:14px;padding:12px 22px;border-radius:var(--radius);white-space:nowrap}
.fl-btn-outline-white{border:1px solid rgba(255,255,255,.35);color:#fff;font-size:14px;padding:12px 22px;border-radius:var(--radius);white-space:nowrap;display:flex;align-items:center;gap:6px}

/* ─── SECTION ───────────────────────────────────────────── */
.fl-section{padding:56px 0}
.fl-section-inner{max-width:1200px;margin:0 auto;padding:0 24px}
.fl-sec-label{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--steel);font-weight:700;margin-bottom:6px}
.fl-sec-title{font-size:28px;font-weight:800;letter-spacing:-.5px;color:var(--navy);margin-bottom:8px}
.fl-sec-sub{font-size:14px;color:var(--muted);margin-bottom:36px}

/* ─── BANNER ────────────────────────────────────────────── */
.fl-banner{position:relative;overflow:hidden;background:var(--navy2);height:480px}
.fl-slides{display:flex;transition:transform .6s ease;height:100%}
.fl-slide{min-width:100%;height:100%;position:relative;display:flex;align-items:flex-end}
.fl-slide-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.55}
.fl-slide-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(26,53,80,.88) 40%,rgba(26,53,80,.1) 100%)}
.fl-slide-content{position:relative;z-index:2;padding:48px 48px 52px;max-width:580px}
.fl-slide-tag{display:inline-block;background:rgba(34,118,184,.25);border:1px solid rgba(34,118,184,.45);color:#90C8F0;font-size:11px;font-weight:700;letter-spacing:1.5px;padding:4px 12px;border-radius:99px;margin-bottom:14px;text-transform:uppercase}
.fl-slide-title{font-size:34px;font-weight:800;color:#fff;line-height:1.2;letter-spacing:-.5px;margin-bottom:10px}
.fl-slide-sub{font-size:15px;color:rgba(255,255,255,.72);line-height:1.6;margin-bottom:20px}
.fl-slide-btn{display:inline-flex;align-items:center;gap:6px;background:var(--accent);color:#fff;font-size:13px;font-weight:700;padding:10px 18px;border-radius:var(--radius)}
.fl-banner-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:10;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;width:44px;height:44px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px}
.fl-banner-btn:hover{background:rgba(255,255,255,.22)}
.fl-banner-prev{left:16px}
.fl-banner-next{right:16px}
.fl-banner-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.fl-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);cursor:pointer;border:none;padding:0;transition:background .2s,width .2s}
.fl-dot.active{background:#fff;width:24px;border-radius:4px}

/* ─── STATS BAR ─────────────────────────────────────────── */
.fl-stats-bar{background:var(--navy);padding:18px 24px}
.fl-stats-inner{max-width:1200px;margin:0 auto;display:flex}
.fl-sbi{flex:1;text-align:center;padding:0 16px;border-right:1px solid rgba(255,255,255,.1)}
.fl-sbi:last-child{border-right:none}
.fl-sbi-val{font-size:21px;font-weight:800;color:#fff;letter-spacing:-.5px}
.fl-sbi-val em{font-style:normal;color:#7EC8F4}
.fl-sbi-key{font-size:10px;color:rgba(255,255,255,.45);margin-top:3px;text-transform:uppercase;letter-spacing:.5px}

/* ─── HERO INFO ─────────────────────────────────────────── */
.fl-hero-info{background:var(--white);border-bottom:1px solid var(--border);padding:56px 24px}
.fl-hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.fl-hero-badge{display:inline-flex;align-items:center;gap:6px;background:var(--steel-light);color:var(--steel);font-size:11px;font-weight:700;letter-spacing:1px;padding:5px 12px;border-radius:99px;margin-bottom:18px;text-transform:uppercase;border:1px solid var(--steel-border)}
.fl-hero-badge i{font-size:12px}
.fl-hero-info h1{font-size:36px;font-weight:800;line-height:1.18;letter-spacing:-.8px;color:var(--navy);margin-bottom:14px}
.fl-hero-info h1 em{font-style:normal;color:var(--accent)}
.fl-hero-sub{font-size:15px;color:var(--muted);line-height:1.7;margin-bottom:28px}
.fl-hero-actions{display:flex;gap:12px;flex-wrap:wrap}
/* Machine card */
.fl-machine-card{background:var(--navy);border-radius:14px;padding:26px;display:flex;flex-direction:column;gap:18px}
.fl-mc-tag{display:inline-block;background:rgba(126,200,244,.15);border:1px solid rgba(126,200,244,.3);color:#90C8F0;font-size:10px;font-weight:700;letter-spacing:1px;padding:3px 10px;border-radius:99px;text-transform:uppercase}
.fl-mc-title{font-size:19px;font-weight:800;color:#fff;margin-top:6px}
.fl-mc-sub{font-size:12px;color:rgba(255,255,255,.45);margin-top:2px}
.fl-mc-specs{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.fl-mc-spec{background:rgba(255,255,255,.07);border-radius:8px;padding:11px 13px;border:1px solid rgba(255,255,255,.08)}
.fl-mc-spec-val{font-size:19px;font-weight:700;color:#fff}
.fl-mc-spec-key{font-size:10px;color:rgba(255,255,255,.4);margin-top:2px;text-transform:uppercase;letter-spacing:.4px}
.fl-mc-status{display:flex;align-items:center;gap:6px;font-size:11px;color:rgba(255,255,255,.4);padding-top:4px;border-top:1px solid rgba(255,255,255,.07)}
.fl-mc-dot{width:6px;height:6px;border-radius:50%;background:#4ade80;flex-shrink:0}

/* ─── SERVICES GRID ─────────────────────────────────────── */
.fl-svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.fl-svc-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px;display:block;transition:border-color .2s}
.fl-svc-card:hover{border-color:var(--steel)}
.fl-svc-card--cta{border-color:var(--steel-border);background:var(--steel-light)}
.fl-svc-icon{width:42px;height:42px;background:var(--steel-light);border-radius:9px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;border:1px solid var(--steel-border);font-size:21px;color:var(--steel)}
.fl-svc-card--cta .fl-svc-icon{background:#D6EBF9;color:var(--accent)}
.fl-svc-title{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:6px}
.fl-svc-desc{font-size:12px;color:var(--muted);line-height:1.6}
.fl-svc-link{font-size:12px;color:var(--steel);margin-top:12px;display:inline-flex;align-items:center;gap:4px;font-weight:600}
.fl-svc-card--cta .fl-svc-link{color:var(--accent)}

/* ─── MACHINES SECTION ──────────────────────────────────── */
.fl-machines-section{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:56px 0}
.fl-machines-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:36px}
.fl-mcard{background:var(--bg);border:1px solid var(--border);border-radius:10px;overflow:hidden;border-top:3px solid var(--steel)}
.fl-mcard-img{aspect-ratio:16/9;overflow:hidden}
.fl-mcard-img img{width:100%;height:100%;object-fit:cover}
.fl-mcard-body{padding:16px}
.fl-mb{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--steel);font-weight:700}
.fl-mm{font-size:13px;font-weight:700;color:var(--navy);margin:4px 0 10px}
.fl-ms{display:flex;justify-content:space-between;font-size:12px;padding:4px 0;border-bottom:1px solid var(--border)}
.fl-ms:last-child{border-bottom:none}
.fl-msk{color:var(--muted)}
.fl-msv{color:var(--navy);font-weight:600}

/* ─── PROCESS ───────────────────────────────────────────── */
.fl-proc-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;background:var(--white)}
.fl-proc-step{padding:24px;border-right:1px solid var(--border)}
.fl-proc-step:last-child{border-right:none}
.fl-proc-num{font-size:32px;font-weight:900;color:var(--steel-light);-webkit-text-stroke:1.5px var(--steel);line-height:1;margin-bottom:10px}
.fl-proc-title{font-size:13px;font-weight:700;color:var(--navy);margin-bottom:5px}
.fl-proc-desc{font-size:12px;color:var(--muted);line-height:1.6}

/* ─── CTA BOX ───────────────────────────────────────────── */
.fl-cta-box{background:var(--navy);border-radius:14px;padding:40px;display:flex;align-items:center;justify-content:space-between;gap:24px;overflow:hidden;position:relative}
.fl-cta-box::after{content:'';position:absolute;right:-60px;top:-60px;width:220px;height:220px;background:rgba(34,118,184,.18);border-radius:50%}
.fl-cta-title{font-size:24px;font-weight:800;color:#fff;letter-spacing:-.3px;margin-bottom:6px}
.fl-cta-sub{font-size:13px;color:rgba(255,255,255,.55)}
.fl-cta-btns{display:flex;gap:10px;flex-shrink:0;position:relative;z-index:1}

/* ─── FOOTER ─────────────────────────────────────────────── */
.fl-footer{background:#162C42;border-top:1px solid rgba(255,255,255,.08);padding:44px 0 22px}
.fl-footer-inner{max-width:1200px;margin:0 auto;padding:0 24px}
.fl-footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:28px;margin-bottom:28px}
.fl-footer-brand p{font-size:12px;color:rgba(255,255,255,.45);margin-top:10px;line-height:1.7}
.fl-footer-col h4{font-size:10px;letter-spacing:1.2px;text-transform:uppercase;color:rgba(255,255,255,.4);font-weight:700;margin-bottom:12px}
.fl-footer-col a{display:block;font-size:13px;color:rgba(255,255,255,.55);margin-bottom:7px}
.fl-footer-col a:hover{color:#fff}
.fl-footer-contact{font-size:13px;color:rgba(255,255,255,.55);display:flex;flex-direction:column;gap:6px}
.fl-footer-contact span{display:flex;align-items:center;gap:6px}
.fl-footer-contact i{font-size:13px;opacity:.5;flex-shrink:0}
.fl-footer-hours{font-size:11px;opacity:.4}
.fl-footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:18px;border-top:1px solid rgba(255,255,255,.07);font-size:12px;color:rgba(255,255,255,.35)}
.fl-footer-bottom a{color:rgba(255,255,255,.35);margin-left:14px}

/* ─── COOKIE BAR ────────────────────────────────────────── */
.fl-cookie-bar{position:fixed;bottom:16px;left:50%;transform:translateX(-50%);width:calc(100% - 32px);max-width:900px;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:13px 18px;display:flex;align-items:center;gap:14px;flex-wrap:wrap;font-size:13px;color:var(--muted);box-shadow:0 4px 24px rgba(26,53,80,.12);z-index:500}
.fl-cookie-bar i{font-size:18px;color:var(--steel);flex-shrink:0}
.fl-cookie-bar a{color:var(--steel)}
.fl-cookie-spacer{flex:1;min-width:20px}
.fl-cbtn{padding:7px 16px;border-radius:6px;font-size:12px;font-weight:700;cursor:pointer;border:none;font-family:var(--ff)}
.fl-cbtn--accept{background:var(--navy);color:#fff}
.fl-cbtn--reject{background:transparent;border:1.5px solid var(--border)!important;color:var(--muted)}

/* ─── PAGE HERO ─────────────────────────────────────────── */
.fl-page-hero{background:var(--navy);padding:40px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.fl-page-hero-inner{max-width:1200px;margin:0 auto;padding:0 24px}
.fl-breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:rgba(255,255,255,.45);margin-bottom:12px}
.fl-breadcrumb a{color:rgba(255,255,255,.55)}
.fl-breadcrumb a:hover{color:#fff}
.fl-breadcrumb i{font-size:12px}
.fl-page-hero h1{font-size:32px;font-weight:800;color:#fff;letter-spacing:-.5px;margin-bottom:8px}
.fl-page-hero p{font-size:15px;color:rgba(255,255,255,.6);max-width:600px}

/* ─── SERVICE LAYOUT ────────────────────────────────────── */
.fl-service-layout{max-width:1200px;margin:0 auto;padding:40px 24px;display:grid;grid-template-columns:260px 1fr;gap:32px;align-items:start}
.fl-sidebar-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:16px;margin-bottom:16px}
.fl-sidebar-card h3{font-size:12px;letter-spacing:1px;text-transform:uppercase;color:var(--muted);font-weight:700;margin-bottom:12px}
.fl-sidebar-link{display:flex;align-items:center;gap:8px;padding:9px 12px;border-radius:7px;color:var(--muted);font-size:13px;margin-bottom:2px}
.fl-sidebar-link i{font-size:16px}
.fl-sidebar-link:hover{background:var(--steel-light);color:var(--navy)}
.fl-sidebar-link.active{background:var(--navy);color:#fff}
.fl-sidebar-cta{background:var(--navy);border-radius:var(--radius-lg);padding:20px}
.fl-sidebar-cta-title{font-size:15px;font-weight:700;color:#fff;margin-bottom:6px}
.fl-sidebar-cta p{font-size:12px;color:rgba(255,255,255,.55)}
.fl-content-body{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;margin-bottom:24px}
.fl-content-body h2{font-size:22px;font-weight:700;color:var(--navy);margin:16px 0 10px}
.fl-content-body p{font-size:14px;color:var(--muted);line-height:1.8}
.fl-svc-big-icon{font-size:40px;color:var(--steel);display:block;margin-bottom:8px}
.fl-service-machines h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:16px}
.fl-machines-grid--full{grid-template-columns:repeat(3,1fr)}

/* ─── MACHINE GROUP ─────────────────────────────────────── */
.fl-machine-group{margin-bottom:48px}
.fl-mg-header{display:flex;align-items:center;gap:10px;margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--steel)}
.fl-mg-header i{font-size:22px;color:var(--steel)}
.fl-mg-header h2{font-size:20px;font-weight:700;color:var(--navy)}

/* ─── ABOUT ─────────────────────────────────────────────── */
.fl-about-grid{display:grid;grid-template-columns:1fr 280px;gap:40px;align-items:start}
.fl-about-text h2{font-size:20px;font-weight:700;color:var(--navy);margin:24px 0 10px}
.fl-about-text h2:first-child{margin-top:0}
.fl-about-text p{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:12px}
.fl-about-stats{display:grid;grid-template-columns:1fr 1fr;gap:14px;position:sticky;top:90px}
.fl-astat{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px;text-align:center;border-top:3px solid var(--steel)}
.fl-astat-val{font-size:28px;font-weight:800;color:var(--navy);letter-spacing:-1px}
.fl-astat-key{font-size:11px;color:var(--muted);margin-top:4px;text-transform:uppercase;letter-spacing:.5px}

/* ─── CONTACT ────────────────────────────────────────────── */
.fl-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.fl-contact-info h2,.fl-contact-form-wrap h2{font-size:20px;font-weight:700;color:var(--navy);margin-bottom:20px}
.fl-cinfo-item{display:flex;gap:12px;margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.fl-cinfo-item:last-of-type{border-bottom:none}
.fl-cinfo-item i{font-size:20px;color:var(--steel);flex-shrink:0;margin-top:2px}
.fl-cinfo-item strong{display:block;font-size:12px;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);margin-bottom:3px}
.fl-cinfo-item p{font-size:13px;color:var(--text)}
.fl-cinfo-item a{color:var(--steel)}
.fl-map-placeholder{margin-top:16px;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border)}

/* ─── FORM ───────────────────────────────────────────────── */
.fl-form{display:flex;flex-direction:column;gap:16px}
.fl-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.fl-form-group{display:flex;flex-direction:column;gap:5px}
.fl-form-group label{font-size:12px;font-weight:600;color:var(--navy);text-transform:uppercase;letter-spacing:.5px}
.fl-input{border:1.5px solid var(--border);border-radius:var(--radius);padding:10px 14px;font-size:14px;font-family:var(--ff);color:var(--text);background:var(--white);outline:none;transition:border-color .2s}
.fl-input:focus{border-color:var(--steel)}
.fl-textarea{resize:vertical;min-height:120px}
.fl-error{font-size:12px;color:var(--accent)}
.fl-alert{display:flex;align-items:center;gap:8px;padding:12px 16px;border-radius:var(--radius);font-size:14px;margin-bottom:16px}
.fl-alert--success{background:#E8F5E9;color:#2E7D32;border:1px solid #A5D6A7}

/* ─── QUOTE FORM EXTRAS ──────────────────────────────────── */
.fl-form-section-title{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--navy);text-transform:uppercase;letter-spacing:.8px;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid var(--steel-light)}
.fl-form-section-title i{font-size:18px;color:var(--steel)}
.fl-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23607A91' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;cursor:pointer}
.fl-quote-info-bar{display:flex;gap:0;background:var(--steel-light);border:1px solid var(--steel-border);border-radius:var(--radius-lg);margin-bottom:28px;overflow:hidden}
.fl-qib-item{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;padding:12px;font-size:12px;font-weight:600;color:var(--navy);border-right:1px solid var(--steel-border);text-align:center}
.fl-qib-item:last-child{border-right:none}
.fl-qib-item i{font-size:16px;color:var(--steel)}
.fl-recaptcha-notice{font-size:11px;color:var(--muted);text-align:center;padding:10px 0;display:flex;align-items:center;justify-content:center;gap:5px}
.fl-recaptcha-notice i{font-size:13px;color:var(--steel)}
.fl-btn-loading{display:inline-flex;align-items:center;gap:6px}
.fl-spin{animation:fl-rotate 1s linear infinite}
@keyframes fl-rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

/* ─── PROJECTS ───────────────────────────────────────────── */
.fl-projects-coming{text-align:center;padding:80px 24px;display:flex;flex-direction:column;align-items:center;gap:12px}
.fl-projects-coming h2{font-size:22px;font-weight:700;color:var(--navy)}
.fl-projects-coming p{font-size:14px;color:var(--muted);max-width:400px}

/* ─── LANDING PAGE ───────────────────────────────────────── */
.fl-landing-hero{padding-bottom:40px}
.fl-landing-hero-sub{font-size:17px;color:rgba(255,255,255,.75);max-width:680px;margin-top:10px;line-height:1.6}
.fl-landing-hero-actions{display:flex;gap:12px;margin-top:24px;flex-wrap:wrap}
.fl-landing-layout{max-width:1200px;margin:0 auto;padding:40px 24px;display:grid;grid-template-columns:1fr 380px;gap:32px;align-items:start}
.fl-landing-content{min-width:0}
/* Trust bar */
.fl-trust-bar{display:flex;gap:0;background:var(--steel-light);border:1px solid var(--steel-border);border-radius:var(--radius-lg);margin-bottom:28px;overflow:hidden}
.fl-trust-item{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;padding:12px 8px;font-size:12px;font-weight:600;color:var(--navy);border-right:1px solid var(--steel-border);text-align:center}
.fl-trust-item:last-child{border-right:none}
.fl-trust-item i{font-size:16px;color:var(--steel)}
/* Content */
.fl-landing-body{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px}
.fl-landing-body h2{font-size:20px;font-weight:700;color:var(--navy);margin:24px 0 12px;padding-bottom:8px;border-bottom:2px solid var(--steel-light)}
.fl-landing-body h2:first-child{margin-top:0}
.fl-landing-body h3{font-size:15px;font-weight:700;color:var(--navy);margin:16px 0 8px}
.fl-landing-body p{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:12px}
.fl-landing-body ul,.fl-landing-body ol{padding-left:20px;margin-bottom:12px}
.fl-landing-body li{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:4px}
.fl-landing-body strong{color:var(--navy)}
/* FAQ */
.fl-faq{margin-top:24px}
.fl-faq h2{font-size:20px;font-weight:700;color:var(--navy);margin-bottom:16px}
.fl-faq-item{border:1px solid var(--border);border-radius:var(--radius);margin-bottom:8px;overflow:hidden;background:var(--white)}
.fl-faq-q{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;cursor:pointer;font-size:14px;font-weight:600;color:var(--navy)}
.fl-faq-q i{transition:transform .2s;flex-shrink:0;margin-left:8px}
.fl-faq-item.open .fl-faq-q i{transform:rotate(180deg)}
.fl-faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 16px;font-size:13px;color:var(--muted);line-height:1.7}
.fl-faq-item.open .fl-faq-a{max-height:200px;padding:0 16px 14px}
/* Sidebar form */
.fl-landing-sidebar{position:sticky;top:80px}
.fl-quote-sidebar-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px;box-shadow:0 4px 20px rgba(26,53,80,.08)}
.fl-quote-sidebar-title{font-size:16px;font-weight:700;color:var(--navy);display:flex;align-items:center;gap:8px;margin-bottom:6px}
.fl-quote-sidebar-title i{font-size:20px;color:var(--steel)}
.fl-quote-sidebar-sub{font-size:13px;color:var(--muted);margin-bottom:20px;line-height:1.5}
.fl-sidebar-contact{margin-top:16px;padding-top:16px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:8px;font-size:13px;color:var(--muted)}
.fl-sidebar-contact div{display:flex;align-items:center;gap:6px}
.fl-sidebar-contact i{color:var(--steel);font-size:14px}
.fl-sidebar-contact a{color:var(--text)}

/* ─── POPULAR SEARCHES ───────────────────────────────────── */
.fl-popular-section{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:48px 0}
.fl-popular-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px}
.fl-popular-card{display:flex;align-items:center;gap:10px;padding:14px 16px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);color:var(--navy);font-size:13px;font-weight:600;transition:all .2s}
.fl-popular-card:hover{background:var(--steel-light);border-color:var(--steel);color:var(--steel)}
.fl-popular-card > i:first-child{font-size:18px;color:var(--steel);flex-shrink:0}
.fl-popular-card > span{flex:1}
.fl-popular-arrow{font-size:14px;opacity:.4}
.fl-popular-card:hover .fl-popular-arrow{opacity:1}

/* ─── FILE UPLOAD ────────────────────────────────────────── */
.fl-form-group--full{grid-column:1/-1}
.fl-file-upload-wrap{position:relative;border:2px dashed var(--border);border-radius:var(--radius);background:var(--bg);transition:border-color .2s}
.fl-file-upload-wrap:hover{border-color:var(--steel)}
.fl-file-input{position:absolute;inset:0;opacity:0;cursor:pointer;width:100%;height:100%}
.fl-file-label{display:flex;align-items:center;gap:10px;padding:14px 16px;cursor:pointer;font-size:13px;color:var(--muted)}
.fl-file-label i{font-size:20px;color:var(--steel);flex-shrink:0}
.fl-file-label.has-file{color:var(--navy);font-weight:500}
.fl-file-label.has-file i{color:var(--steel)}
.fl-file-hint{font-size:11px;color:var(--muted);margin-top:5px}

/* ─── STATIC PAGE CONTENT ────────────────────────────────── */
.fl-static-content{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px}
.fl-static-content h2{font-size:20px;font-weight:700;color:var(--navy);margin:24px 0 12px;padding-bottom:8px;border-bottom:2px solid var(--steel-light)}
.fl-static-content h2:first-child{margin-top:0}
.fl-static-content h3{font-size:16px;font-weight:700;color:var(--navy);margin:16px 0 8px}
.fl-static-content h4{font-size:14px;font-weight:700;color:var(--navy);margin:12px 0 6px}
.fl-static-content p{font-size:14px;color:var(--muted);line-height:1.9;margin-bottom:14px}
.fl-static-content ul,.fl-static-content ol{padding-left:22px;margin-bottom:14px}
.fl-static-content li{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:4px}
.fl-static-content strong{color:var(--navy)}
.fl-static-content a{color:var(--steel)}
.fl-static-content img{max-width:100%;border-radius:var(--radius);margin:12px 0}
.fl-static-content table{width:100%;border-collapse:collapse;margin:16px 0;font-size:13px}
.fl-static-content table th{background:var(--navy);color:#fff;padding:10px 14px;text-align:left}
.fl-static-content table td{padding:9px 14px;border-bottom:1px solid var(--border)}
.fl-static-content table tr:hover td{background:var(--steel-light)}
.fl-static-content blockquote{border-left:4px solid var(--steel);padding:12px 16px;margin:16px 0;background:var(--steel-light);border-radius:0 var(--radius) var(--radius) 0;font-style:italic;color:var(--muted)}

/* ─── INPUT PLACEHOLDER & PHONE ──────────────────────────── */
.fl-input::placeholder{color:#aab4c0;opacity:1}
.fl-input:focus::placeholder{color:#c5cdd6}
.fl-textarea::placeholder{color:#aab4c0;opacity:1}
.fl-file-label{color:#aab4c0}
/* telefon input focus'ta belirginleşsin */
.fl-input[type="tel"]::placeholder{color:#aab4c0}
