:root{
  --navy:#061c46;
  --navy-2:#0b2b64;
  --blue:#079bd3;
  --blue-soft:#e9f7fc;
  --red:#ef2639;
  --ink:#16223a;
  --muted:#66728a;
  --line:#dfe7f1;
  --light:#f5f8fc;
  --white:#ffffff;
  --shadow:0 20px 60px rgba(7,28,70,.12);
  --radius:24px;
  --container:min(1180px, calc(100% - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Aptos, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
img,svg{max-width:100%;display:block}
section{scroll-margin-top:90px}
.container{width:var(--container);margin-inline:auto}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--red);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:26px;height:2px;
  background:var(--red);
  border-radius:2px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(2.8rem,6vw,5.8rem);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:24px;
}
h2{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.05;
  letter-spacing:-.04em;
  margin-bottom:22px;
}
h3{
  font-size:1.25rem;
  line-height:1.25;
  margin-bottom:12px;
}
.lead{
  font-size:clamp(1rem,1.5vw,1.2rem);
  color:var(--muted);
  max-width:680px;
}

.logo{
  width: 100px;
}

.team{
  text-align: center;
}

.team div{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.team div aside{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.194);
  width: 300px;
  padding: 20px;
  margin-top: 30px;
}
.team img{
  width: 300px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 23px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}
.btn svg{width:19px;height:19px}
.btn-primary{
  color:var(--white);
  background:var(--red);
  box-shadow:0 12px 30px rgba(239,38,57,.28);
}
.btn-primary:hover{transform:translateY(-2px);background:#d91e30}
.btn-secondary{
  color:var(--navy);
  background:var(--white);
  border-color:rgba(6,28,70,.13);
  box-shadow:0 10px 30px rgba(6,28,70,.08);
}
.btn-secondary:hover{transform:translateY(-2px);border-color:var(--blue)}
.btn-outline{
  color:var(--white);
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
}
.btn-outline:hover{background:rgba(255,255,255,.13)}
.section-pad{padding:110px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:52px;
}
.section-head > div:first-child{max-width:760px}
.section-head .lead{margin-bottom:0}

.progress{
  position:fixed;
  z-index:999;
  top:0;left:0;
  width:0;height:3px;
  background:linear-gradient(90deg,var(--red),var(--blue));
  transition:width .1s linear;
}

.topbar{
  background:var(--navy);
  color:rgba(255,255,255,.78);
  font-size:.82rem;
}
.topbar-inner{
  min-height:36px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.topbar-links{
  display:flex;
  align-items:center;
  gap:24px;
}
.topbar a:hover{color:var(--white)}
.navbar{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(6,28,70,.07);
}
.nav-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.brand-mark{
  position:relative;
  width:51px;height:40px;
}
.brand-mark span{
  position:absolute;
  top:4px;
  width:33px;height:33px;
  border-radius:50%;
}
.brand-mark span:nth-child(1){left:0;background:var(--navy)}
.brand-mark span:nth-child(2){left:10px;background:var(--blue)}
.brand-mark span:nth-child(3){left:20px;background:var(--red)}
.brand-mark::after{
  content:"";
  position:absolute;
  width:29px;height:29px;
  border-radius:50%;
  background:var(--white);
  top:6px;left:4px;
}
.brand-word{line-height:.9}
.brand-word strong{
  display:block;
  font-size:1.25rem;
  letter-spacing:-.04em;
  color:var(--navy);
}
.brand-word small{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:.58rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:.92rem;
  font-weight:750;
  color:#30405c;
}
.nav-links a{
  position:relative;
  padding:27px 0;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:18px;
  height:2px;background:var(--red);
  transition:.22s ease;
}
.nav-links a:hover{color:var(--navy)}
.nav-links a:hover::after{right:0}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang{
  border:0;
  background:var(--light);
  color:var(--navy);
  border-radius:999px;
  height:42px;
  padding:0 14px;
  font-weight:900;
  cursor:pointer;
}
.menu-btn{
  display:none;
  width:44px;height:44px;
  border:0;border-radius:12px;
  background:var(--light);
  color:var(--navy);
  cursor:pointer;
}

.hero{
  position:relative;
  min-height:760px;
  color:var(--white);
  background:
    radial-gradient(circle at 76% 26%, rgba(7,155,211,.28), transparent 29%),
    radial-gradient(circle at 88% 72%, rgba(239,38,57,.13), transparent 24%),
    linear-gradient(124deg,#041532 0%,#062252 48%,#073577 100%);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  width:850px;height:850px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  right:-340px;top:-310px;
  box-shadow:
    0 0 0 80px rgba(255,255,255,.025),
    0 0 0 160px rgba(255,255,255,.018),
    0 0 0 240px rgba(255,255,255,.012);
}
.hero::after{
  content:"";
  position:absolute;
  left:-5%;right:-5%;bottom:-150px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.045);
  transform:rotate(-2deg);
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  min-height:760px;
  align-items:center;
  gap:70px;
  padding:70px 0 92px;
}
.hero .eyebrow{color:#82d9f5}
.hero .eyebrow::before{background:var(--red)}
.hero h1 span{color:#7dd9f6}
.hero-copy p{
  max-width:650px;
  color:rgba(255,255,255,.75);
  font-size:1.12rem;
  margin-bottom:31px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-bottom:46px;
}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:23px;
  color:rgba(255,255,255,.7);
  font-size:.88rem;
}
.hero-trust span{
  display:flex;align-items:center;gap:8px;
}
.hero-trust i{
  width:19px;height:19px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(125,217,246,.13);
  color:#7dd9f6;
  font-style:normal;
  font-weight:900;
  font-size:.7rem;
}

.hero-visual{
  position:relative;
  min-height:510px;
  display:grid;
  place-items:center;
}
.orbit{
  position:absolute;
  width:500px;height:500px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  animation:spin 32s linear infinite;
}
.orbit::before,.orbit::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 30px rgba(239,38,57,.45);
}
.orbit::before{width:12px;height:12px;top:65px;right:75px}
.orbit::after{width:8px;height:8px;bottom:90px;left:48px;background:#70d7f7}
@keyframes spin{to{transform:rotate(360deg)}}
.ops-card{
  position:relative;
  width:min(100%,455px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:32px;
  background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.05));
  backdrop-filter:blur(12px);
  box-shadow:0 36px 90px rgba(0,0,0,.28);
  overflow:hidden;
}
.ops-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 22px 14px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.ops-top strong{font-size:.92rem}
.live{
  display:flex;align-items:center;gap:8px;
  font-size:.72rem;color:rgba(255,255,255,.62);
  text-transform:uppercase;letter-spacing:.1em;
}
.live::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:#37e68b;
  box-shadow:0 0 0 5px rgba(55,230,139,.13);
}
.scene{
  position:relative;
  height:250px;
  background:
    linear-gradient(to bottom,rgba(101,204,242,.2),transparent 55%),
    linear-gradient(to bottom,#0c4f88 0 57%,#07366b 57% 100%);
  overflow:hidden;
}
.sun{
  position:absolute; width:74px;height:74px;border-radius:50%;
  right:50px;top:45px;
  background:rgba(125,217,246,.18);
  box-shadow:0 0 0 18px rgba(125,217,246,.045);
}
.water-line{
  position:absolute;left:-10%;right:-10%;bottom:0;height:118px;
  opacity:.55;
  background:
    repeating-radial-gradient(ellipse at 50% 120%,transparent 0 10px,rgba(255,255,255,.12) 11px 12px);
}
.ship{
  position:absolute;
  left:50%;bottom:54px;
  width:270px;height:112px;
  transform:translateX(-50%);
}
.ship-hull{
  position:absolute;
  left:8px;bottom:0;
  width:250px;height:48px;
  background:#f3f7fc;
  clip-path:polygon(0 0,100% 0,83% 100%,16% 100%);
  border-bottom:9px solid var(--red);
  box-shadow:0 16px 30px rgba(0,0,0,.28);
}
.ship-deck{
  position:absolute;
  left:71px;bottom:47px;
  width:112px;height:44px;
  background:#e9f0f7;
  border-radius:8px 8px 0 0;
}
.ship-window{
  position:absolute;left:87px;bottom:67px;
  display:flex;gap:7px;
}
.ship-window i{
  width:18px;height:12px;border-radius:2px;
  background:var(--navy);
}
.mast{
  position:absolute;
  left:128px;bottom:89px;
  width:4px;height:45px;background:#e9f0f7;
}
.mast::after{
  content:"";
  position:absolute;left:4px;top:8px;
  width:34px;height:2px;background:#e9f0f7;
  transform:rotate(8deg);
  transform-origin:left;
}
.cargo{
  position:absolute;left:28px;bottom:44px;
  display:flex;gap:4px;
}
.cargo i{width:35px;height:20px;background:#f0b424;border-radius:2px}
.cargo i:nth-child(2){background:var(--blue)}
.cargo i:nth-child(3){background:var(--red)}
.ops-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,.1);
}
.ops-stat{
  padding:18px 10px;
  background:rgba(4,21,50,.45);
  text-align:center;
}
.ops-stat strong{
  display:block;
  font-size:1.25rem;
  line-height:1;
  margin-bottom:7px;
}
.ops-stat span{
  font-size:.66rem;
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.float-card{
  position:absolute;
  z-index:4;
  padding:14px 17px;
  border-radius:16px;
  color:var(--navy);
  background:rgba(255,255,255,.95);
  box-shadow:0 18px 50px rgba(0,0,0,.2);
  animation:float 5s ease-in-out infinite;
}
.float-card strong{display:block;font-size:.9rem}
.float-card small{display:block;color:var(--muted);font-size:.7rem}
.float-a{left:-16px;top:78px}
.float-b{right:-20px;bottom:70px;animation-delay:-2.2s}
@keyframes float{50%{transform:translateY(-10px)}}

.trust-strip{
  position:relative;
  z-index:4;
  margin-top:-36px;
}
.trust-grid{
  display:grid;
  grid-template-columns:1fr repeat(1,1fr);
  background:var(--white);
  border-radius:22px;
  border:1px solid rgba(6,28,70,.07);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.trust-item{
  padding:28px 26px;
  border-right:1px solid var(--line);
}
.trust-item:last-child{border-right:0}
.trust-item:first-child{
  background:var(--navy);
  color:var(--white);
}
.trust-item strong{
  display:block;
  color:inherit;
  font-size:1.55rem;
  line-height:1;
  margin-bottom:8px;
}
.trust-item:first-child strong{font-size:1.15rem;line-height:1.3}
.trust-item span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.trust-item:first-child span{color:rgba(255,255,255,.57)}

.about-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:80px;
  align-items:center;
}
.about-visual{
  position:relative;
  min-height:580px;
}
.about-main{
  position:relative;
  inset:0 68px 48px 0;
  border-radius:32px;
  background:
    linear-gradient(180deg,rgba(6,28,70,.04),rgba(6,28,70,.14)),
    linear-gradient(145deg,#e8f7fc,#f8fbfe);
  overflow:hidden;
  box-shadow:var(--shadow);
  width: 450px;
}

.about-main img{
  width:100%;
  object-fit: cover;
  height: 500px;
}
.about-main::before{
  content:"";
  position:absolute;
  width:440px;height:440px;border-radius:50%;
  border:62px solid rgba(7,155,211,.11);
  right:-180px;top:-120px;
}
.about-main::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:40%;
  background:
    linear-gradient(140deg,transparent 0 34%,rgba(6,28,70,.07) 35% 38%,transparent 39% 53%,rgba(6,28,70,.08) 54% 57%,transparent 58%);
}
.route-map{
  position:absolute;
  inset:60px 42px 50px;
}
.route-map svg{width:100%;height:100%}
.about-badge{
  position:absolute;
  right:0;bottom:0;
  width:190px;height:190px;
  border-radius:24px;
  background:var(--red);
  color:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:25px;
  box-shadow:0 25px 50px rgba(239,38,57,.28);
}
.about-badge strong{font-size:3.5rem;line-height:.85;letter-spacing:-.06em}
.about-badge span{margin-top:11px;font-size:.78rem;text-transform:uppercase;letter-spacing:.1em}
.about-copy .lead{margin-bottom:28px}
.pillars{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:30px 0 34px;
}
.pillar{
  padding:18px;
  border:1px solid var(--line);
  border-radius:17px;
  background:var(--white);
}
.pillar-head{display:flex;align-items:center;gap:11px;margin-bottom:8px}
.pillar-icon{
  width:35px;height:35px;border-radius:10px;
  display:grid;place-items:center;
  color:var(--navy);
  background:var(--blue-soft);
}
.pillar p{font-size:.84rem;color:var(--muted);margin:0}

.services{background:var(--light)}
.service-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.service-card{
  position:relative;
  min-height:510px;
  padding:42px;
  border-radius:30px;
  overflow:hidden;
  color:var(--white);
  box-shadow:var(--shadow);
}
.service-card.fishing{
  background:
    radial-gradient(circle at 82% 14%,rgba(125,217,246,.22),transparent 26%),
    linear-gradient(145deg,#05204d,#0a4581);
}
.service-card.logistics{
  background:
    radial-gradient(circle at 78% 12%,rgba(239,38,57,.2),transparent 24%),
    linear-gradient(145deg,#101b31,#253b62);
}
.service-number{
  position:absolute;
  right:24px;top:10px;
  font-size:7.8rem;
  line-height:1;
  color:rgba(255,255,255,.05);
  font-weight:900;
  letter-spacing:-.08em;
}
.service-icon{
  width:58px;height:58px;
  display:grid;place-items:center;
  border-radius:17px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:28px;
}
.service-icon svg{width:30px;height:30px}
.service-card h3{font-size:2rem;letter-spacing:-.04em}
.service-card > p{color:rgba(255,255,255,.68);max-width:540px}
.service-list{
  display:grid;
  gap:13px;
  margin:27px 0 35px;
}
.service-list span{
  display:flex;align-items:center;gap:11px;
  color:rgba(255,255,255,.88);
  font-size:.92rem;
}
.service-list span::before{
  content:"✓";
  flex:0 0 23px;
  width:23px;height:23px;
  display:grid;place-items:center;
  border-radius:50%;
  color:var(--white);
  background:rgba(125,217,246,.16);
  font-size:.72rem;
  font-weight:900;
}
.logistics .service-list span::before{background:rgba(239,38,57,.18)}

.journey-wrap{
  position:relative;
  border-radius:30px;
  padding:60px;
  background:var(--navy);
  color:var(--white);
  overflow:hidden;
}
.journey-wrap::before{
  content:"";
  position:absolute;
  width:500px;height:500px;border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  right:-180px;top:-230px;
  box-shadow:0 0 0 70px rgba(255,255,255,.02),0 0 0 140px rgba(255,255,255,.015);
}
.journey-head{
  position:relative;z-index:2;
  display:flex;justify-content:space-between;align-items:end;gap:30px;
  margin-bottom:45px;
}
.journey-head p{max-width:480px;color:rgba(255,255,255,.66);margin:0}
.journey-grid{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.journey-grid::before{
  content:"";
  position:absolute;
  left:9%;right:9%;top:31px;
  height:1px;
  background:rgba(255,255,255,.18);
}
.journey-step{position:relative;padding-right:25px}
.step-dot{
  position:relative;z-index:2;
  width:62px;height:62px;border-radius:50%;
  display:grid;place-items:center;
  margin-bottom:24px;
  color:var(--white);
  background:var(--navy-2);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 0 9px var(--navy);
  font-weight:900;
}
.journey-step:nth-child(2) .step-dot{background:#0a4786}
.journey-step:nth-child(3) .step-dot{background:#087faa}
.journey-step:nth-child(4) .step-dot{background:var(--red)}
.journey-step p{color:rgba(255,255,255,.6);font-size:.86rem;margin:0}

.capacity{background:var(--white)}
.capacity-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}
.numbers{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  margin-top:32px;
}
.number{
  padding:29px;
  min-height:145px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.number:nth-child(2n){border-right:0}
.number:nth-last-child(-n+2){border-bottom:0}
.number strong{
  display:block;
  color:var(--navy);
  font-size:2.4rem;
  line-height:1;
  letter-spacing:-.05em;
  margin-bottom:11px;
}
.number span{color:var(--muted);font-size:.86rem}
.capacity-panel{
  position:relative;
  min-height:320px;
  border-radius:32px;
  background:
    radial-gradient(circle at 70% 20%,rgba(7,155,211,.22),transparent 25%),
    linear-gradient(145deg,#071a3f,#0a3470);
  overflow:hidden;
  box-shadow:var(--shadow);
  color:var(--white);
  padding:42px;
}
.capacity-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,transparent 0 50%,rgba(255,255,255,.035) 50% 51%,transparent 51%),
    linear-gradient(30deg,transparent 0 60%,rgba(255,255,255,.025) 60% 61%,transparent 61%);
  background-size:80px 80px;
}
.capacity-panel > *{position:relative;z-index:2}
.capacity-panel h3{font-size:2rem;max-width:340px}
.capacity-panel p{color:rgba(255,255,255,.66)}
.fleet-card{
  position:absolute;
  left:42px;right:42px;bottom:42px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:14px;
}
.fleet-item{
  padding:22px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(9px);
}
.fleet-item strong{display:block;font-size:1.75rem}
.fleet-item span{color:rgba(255,255,255,.58);font-size:.77rem}
.wave-mark{
  position:absolute;
  width:360px;height:360px;
  border-radius:50%;
  right:-120px;top:130px;
  border:45px solid rgba(125,217,246,.075);
  box-shadow:0 0 0 45px rgba(125,217,246,.035);
}

.sectors{background:var(--light)}
.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.sector-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--white);
  transition:.25s ease;
}
.sector-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 50px rgba(6,28,70,.09);
  border-color:#c8deed;
}
.sector-icon{
  width:47px;height:47px;border-radius:14px;
  display:grid;place-items:center;
  background:var(--blue-soft);
  color:var(--navy);
  margin-bottom:22px;
}
.sector-icon svg{width:23px;height:23px}
.sector-card p{color:var(--muted);font-size:.87rem;margin:0}

.quality-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.quality-visual{
  position:relative;
  min-height:540px;
  border-radius:30px;
  background:
    radial-gradient(circle at 20% 20%,rgba(239,38,57,.16),transparent 26%),
    linear-gradient(145deg,#edf8fc,#f6f9fd);
  border:1px solid var(--line);
  background-image: url("imagens/orkiz-3.png");
  background-size:cover ;
  background-position: center left;
  overflow:hidden;
}
.seal{
  position:absolute;
  left:50%;top:48%;
  transform:translate(-50%,-50%);
  width:210px;height:210px;
  border-radius:50%;
  background:var(--navy);
  color:var(--white);
  display:grid;place-items:center;
  box-shadow:0 25px 60px rgba(6,28,70,.25);
}
.seal::before,.seal::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(6,28,70,.13);
}
.seal::before{width:310px;height:310px}
.seal::after{width:410px;height:410px}
.seal-inner{text-align:center;position:relative;z-index:2}
.seal-inner svg{width:48px;height:48px;margin:0 auto 13px}
.seal-inner strong{display:block;font-size:1.05rem}
.seal-inner span{display:block;color:rgba(255,255,255,.57);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;margin-top:6px}
.quality-list{display:grid;gap:16px;margin-top:30px}
.quality-item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:15px;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
}
.quality-item i{
  width:44px;height:44px;border-radius:13px;
  display:grid;place-items:center;
  background:var(--blue-soft);
  color:var(--navy);
  font-style:normal;
  font-weight:900;
}
.quality-item p{margin:4px 0 0;color:var(--muted);font-size:.84rem}

.cta{
  position:relative;
  color:var(--white);
  background:linear-gradient(135deg,var(--red),#cc1d31);
  overflow:hidden;
}
.cta::before{
  content:"";
  position:absolute;
  width:460px;height:460px;
  border-radius:50%;
  right:-120px;top:-250px;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 0 0 70px rgba(255,255,255,.035),0 0 0 140px rgba(255,255,255,.02);
}
.cta-inner{
  position:relative;z-index:2;
  min-height:340px;
  display:flex;justify-content:space-between;align-items:center;gap:50px;
}
.cta h2{max-width:720px;margin-bottom:16px}
.cta p{color:rgba(255,255,255,.72);max-width:660px;margin:0}
.cta .btn-secondary{flex:0 0 auto}

.contact{background:var(--navy);color:var(--white)}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}
.contact .lead{color:rgba(255,255,255,.63)}
.contact-list{display:grid;gap:13px;margin-top:35px}
.contact-item{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:15px;
  align-items:center;
  padding:15px;
  border-radius:17px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
}
.contact-icon{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(125,217,246,.1);
  color:#7dd9f6;
}
.contact-item small{display:block;color:rgba(255,255,255,.45);font-size:.69rem;text-transform:uppercase;letter-spacing:.08em}
.contact-item strong{display:block;font-size:.92rem}
.form{
  padding:34px;
  border-radius:26px;
  background:var(--white);
  color:var(--ink);
  box-shadow:0 30px 90px rgba(0,0,0,.22);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:15px}
.field{margin-bottom:15px}
.field label{
  display:block;
  font-size:.77rem;
  font-weight:800;
  margin-bottom:7px;
  color:#43506a;
}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid #dbe3ee;
  border-radius:13px;
  background:#f9fbfd;
  padding:14px 15px;
  outline:none;
  transition:.2s ease;
}
.field input:focus,.field textarea:focus,.field select:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(7,155,211,.1);
}
.field textarea{min-height:125px;resize:vertical}
.form .btn{width:100%}
.form-note{margin:12px 0 0;text-align:center;color:var(--muted);font-size:.72rem}

footer{background:#03132e;color:rgba(255,255,255,.58)}
.footer-main{
  display:grid;
  grid-template-columns:1.2fr .7fr .7fr;
  gap:60px;
  padding:60px 0 38px;
}
footer .brand-word strong{color:var(--white)}
footer .brand-mark::after{background:#03132e}
.footer-copy{max-width:420px;margin-top:20px;font-size:.86rem}
.footer-title{color:var(--white);font-size:.83rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:18px}
.footer-links{display:grid;gap:10px;font-size:.86rem}
.footer-links a:hover{color:var(--white)}
.footer-bottom{
  display:flex;justify-content:space-between;gap:20px;
  padding:20px 0 25px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:.75rem;
}
.socials{display:flex;gap:9px;margin-top:20px}
.socials a{
  width:38px;height:38px;border-radius:11px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.07);
  color:var(--white);
}
.socials a:hover{background:var(--red)}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .75s ease,transform .75s ease;
}
.reveal.visible{opacity:1;transform:none}

.floating-contact{
  position:fixed;
  z-index:60;
  right:20px;bottom:20px;
  width:54px;height:54px;
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--white);
  background:#1db954;
  box-shadow:0 16px 35px rgba(29,185,84,.34);
  transition:.2s ease;
}
.floating-contact:hover{transform:translateY(-3px) scale(1.03)}
.floating-contact svg{width:25px;height:25px}

@media(max-width:1020px){
  .nav-links,.nav-actions .btn{display:none}
  .menu-btn{display:grid;place-items:center}
  .hero-grid,.about-grid,.capacity-grid,.quality-grid,.contact-grid{grid-template-columns:1fr}
  .hero-grid{padding-top:90px;gap:25px}
  .hero-copy{text-align:center}
  .hero-copy p,.hero .eyebrow{margin-inline:auto}
  .hero-actions,.hero-trust{justify-content:center}
  .hero-visual{min-height:500px}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item:nth-child(2){border-right:0}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .about-visual{order:2;min-height:540px}
  .service-card{padding:35px}
  .journey-grid{grid-template-columns:1fr 1fr;gap:38px}
  .journey-grid::before{display:none}
  .sector-grid{grid-template-columns:1fr 1fr}
  .contact-copy{max-width:700px}
  .footer-main{grid-template-columns:1fr 1fr}
  .footer-main > div:first-child{grid-column:1/-1}
  .mobile-panel{
    position:fixed;
    z-index:79;
    inset:115px 15px auto;
    padding:18px;
    border-radius:20px;
    background:var(--white);
    box-shadow:0 24px 70px rgba(6,28,70,.2);
    border:1px solid var(--line);
    transform:translateY(-20px);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
  }
  body.menu-open .mobile-panel{opacity:1;transform:none;pointer-events:auto}
  .mobile-panel a{
    display:block;
    padding:14px;
    border-radius:12px;
    font-weight:800;
  }
  .mobile-panel a:hover{background:var(--light)}
}

@media(min-width:1021px){.mobile-panel{display:none}}

@media(max-width:720px){
  :root{--container:min(100% - 28px,1180px)}
  .topbar{display:none}
  .navbar{top:0}
  .section-pad{padding:78px 0}
  .section-head,.journey-head,.cta-inner{display:block}
  .section-head .lead,.journey-head p{margin-top:18px}
  h1{font-size:clamp(2.7rem,13vw,4.25rem)}
  .hero{min-height:auto}
  .hero-grid{min-height:auto;padding:70px 0 85px}
  .hero-visual{min-height:410px}
  .orbit{width:390px;height:390px}
  .ops-card{width:100%}
  .float-card{display:none}
  .trust-strip{margin-top:-25px}
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid var(--line)}
  .trust-item:last-child{border-bottom:0}
  .about-visual{min-height:460px}
  .about-main{inset:0 30px 42px 0}
  .about-badge{width:155px;height:155px}
  .about-badge strong{font-size:2.8rem}
  .pillars,.service-grid,.journey-grid,.numbers,.sector-grid,.form-row{grid-template-columns:1fr}
  .service-card{min-height:auto;padding:30px}
  .journey-wrap{padding:36px 27px}
  .journey-step{padding:0}
  .number{border-right:0!important;border-bottom:1px solid var(--line)!important}
  .number:last-child{border-bottom:0!important}
  .capacity-panel{min-height:520px;padding:30px}
  .fleet-card{left:30px;right:30px;bottom:30px}
  .cta-inner{padding:70px 0}
  .cta .btn-secondary{margin-top:28px}
  .form{padding:24px}
  .footer-main{grid-template-columns:1fr;gap:38px}
  .footer-main > div:first-child{grid-column:auto}
  .footer-bottom{display:block}
  .footer-bottom span{display:block;margin-bottom:7px}
  .floating-contact{right:14px;bottom:14px}
}

@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}
