:root {
  --teal-dark:   #0d5c72;
  --teal:        #1a8fa8;
  --teal-mid:    #22b0cc;
  --teal-light:  #5dd6ec;
  --teal-pale:   #aaecf8;
  --white:       #ffffff;
  --line:        rgba(255,255,255,0.12);
  --line-dark:   rgba(30,143,168,0.12);
}


/* ── HERO WRAPPER ── */
.pt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── SKY GRADIENT ── */
.pt-sky {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    #071e2e 0%,
    #0b3d58 15%,
    #0f6080 32%,
    #1490b8 50%,
    #26bcd8 65%,
    #60d8ee 80%,
    #a2ecf8 92%,
    #cef5fc 100%
  );
}

/* ── DOT GRID ── */
.pt-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(93,214,236,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ── HORIZON DARK ── */
.pt-horizon {
  position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(0deg, rgba(7,30,46,0.92) 0%, transparent 100%);
  pointer-events: none;
}

/* ── STARS CANVAS ── */
#pt-stars {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 55%;
  pointer-events: none;
}

/* ── CLOUDS ── */
.pt-clouds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pt-cloud {
  position: absolute;
  border-radius: 60px;
  background: rgba(255,255,255,0.16);
  filter: blur(20px);
}
.pt-cloud-1 { width: 350px; height: 65px; top: 25%; animation: cloudDrift 30s linear infinite; }
.pt-cloud-2 { width: 240px; height: 48px; top: 36%; animation: cloudDrift 38s linear 9s infinite; }
.pt-cloud-3 { width: 290px; height: 55px; top: 19%; animation: cloudDrift 24s linear 5s infinite; }
.pt-cloud-4 { width: 200px; height: 40px; top: 44%; animation: cloudDrift 34s linear 15s infinite; }
.pt-cloud-5 { width: 180px; height: 35px; top: 30%; animation: cloudDrift 42s linear 20s infinite; }
.pt-wisp   { position: absolute; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.1); filter: blur(7px); }
.pt-wisp-1 { width: 220px; top: 28%; animation: cloudDrift 22s linear 7s infinite; }
.pt-wisp-2 { width: 160px; top: 40%; animation: cloudDrift 26s linear 12s infinite; }

@keyframes cloudDrift {
  0%   { left: -400px; }
  100% { left: calc(100vw + 400px); }
}

/* ── FLYING PLANE ── */
.pt-flying-plane {
  position: absolute;
  pointer-events: none;
  top: 28%;
  left: -220px;
  animation: flyAcross 22s linear 1s infinite;
  z-index: 6;
}
.pt-flying-plane svg {
  width: 220px;
  filter: drop-shadow(0 6px 18px rgba(10,60,100,0.35));
}
@keyframes flyAcross {
  0%   { left: -220px; top: 32%; opacity: 0; }
  5%   { opacity: 1; }
  45%  { top: 24%; }
  55%  { top: 26%; }
  95%  { opacity: 1; }
  100% { left: calc(100vw + 220px); top: 22%; opacity: 0; }
}

/* SECOND smaller plane — flies at different time */
.pt-flying-plane-2 {
  position: absolute;
  pointer-events: none;
  top: 42%;
  left: -140px;
  animation: flyAcross2 30s linear 12s infinite;
  z-index: 5;
}
.pt-flying-plane-2 svg { width: 140px; filter: drop-shadow(0 4px 12px rgba(10,60,100,0.25)); }
@keyframes flyAcross2 {
  0%   { left: -140px; top: 42%; opacity: 0; }
  4%   { opacity: 0.75; }
  96%  { opacity: 0.75; }
  100% { left: calc(100vw + 140px); top: 36%; opacity: 0; }
}

/* ── MAIN STATIC PLANE (center) ── */
.pt-main-plane {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 7;
  animation: ptFloat 7s ease-in-out infinite, ptFadeIn 1s ease .5s both;
}
.pt-main-plane svg { width: min(600px, 82vw); filter: drop-shadow(0 14px 36px rgba(8,50,90,0.5)); }
.pt-plane-shadow {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 42vw);
  height: 18px;
  background: rgba(7,30,46,0.4);
  border-radius: 50%;
  filter: blur(16px);
  z-index: 6;
  animation: shadowAnim 7s ease-in-out infinite;
}
@keyframes ptFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  30%      { transform: translateX(-50%) translateY(-12px) rotate(-0.3deg); }
  70%      { transform: translateX(-50%) translateY(8px)  rotate(0.2deg); }
}
@keyframes shadowAnim {
  0%,100% { transform: translateX(-50%) scaleX(1); opacity: .4; }
  30%      { transform: translateX(-50%) scaleX(.85); opacity: .22; }
  70%      { transform: translateX(-50%) scaleX(.92); opacity: .3; }
}
@keyframes ptFadeIn { from { opacity:0; transform: translateX(-50%) translateY(30px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* ── NAVBAR ── */
.pt-nav {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 52px;
  background: rgba(7,30,46,0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.pt-logo-wrap { display: flex; align-items: center; gap: 14px; }
.pt-logo-img {
  height: 52px; width: auto;
  /* removes white background from logo */
  mix-blend-mode: screen;
  filter: brightness(1.1) drop-shadow(0 2px 10px rgba(93,214,236,0.4));
  transition: filter .3s;
}
.pt-logo-img:hover { filter: brightness(1.2) drop-shadow(0 2px 16px rgba(93,214,236,0.6)); }
.pt-logo-name    { font-weight:700; font-size:17px; color:#fff; letter-spacing:3px; text-transform:uppercase; line-height:1; }
.pt-logo-sub     { font-size:8px; color:var(--teal-pale); letter-spacing:2.5px; text-transform:uppercase; margin-top:3px; font-weight:500; }

.pt-nav-links { display: flex; gap: 26px; list-style: none; }
.pt-nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .7px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color .25s; position: relative; padding-bottom: 3px;
}
.pt-nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:1.5px;
  background: var(--teal-light); transform: scaleX(0);
  transition: transform .25s; transform-origin: left;
}
.pt-nav-links a:hover { color: #fff; }
.pt-nav-links a:hover::after { transform: scaleX(1); }

/* Services dropdown */
.pt-has-dropdown { position: relative; }
.pt-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: -12px;
  background: rgba(10,40,60,0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 4px;
  min-width: 240px; padding: 8px 0; z-index: 100;
}
.pt-has-dropdown:hover .pt-dropdown { display: block; }
.pt-dropdown a {
  display: block; padding: 9px 18px; font-size: 11.5px;
  color: rgba(255,255,255,0.75) !important; letter-spacing: .5px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pt-dropdown a:last-child { border-bottom: none; }
.pt-dropdown a:hover { background: rgba(93,214,236,0.08); color: var(--teal-pale) !important; }

.pt-nav-cta {
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(93,214,236,0.3); border-radius: 2px; cursor: pointer;
  /*font-family: 'Plus Jakarta Sans', sans-serif;*/
  box-shadow: 0 4px 16px rgba(34,176,204,0.3);
  transition: all .3s; text-decoration: none; display: inline-block;
}
.pt-nav-cta:hover { box-shadow: 0 6px 24px rgba(34,176,204,0.5); transform: translateY(-1px); }

/* ── HERO CONTENT ── */
.pt-content {
  position: relative; z-index: 15;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 52px 40px 0;
  flex: 1;
}

.pt-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(93,214,236,0.35);
  padding: 7px 18px; border-radius: 30px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  animation: ptFadeDown .8s ease .2s both;
}
.pt-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: ptBlink 2s infinite; }
.pt-eyebrow-txt { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-pale); }
@keyframes ptBlink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

.pt-h1 {
  /*font-family: 'Syne', sans-serif; */
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.03; color: #fff;
  margin-bottom: 10px; letter-spacing: -1px;
  text-shadow: 0 2px 28px rgba(8,50,100,0.55);
  animation: ptFadeDown .8s ease .3s both;
}
.pt-h1 em {
  color: white;
  font-style: normal;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.pt-sub {
  font-size: clamp(13px, 1.5vw, 15px); line-height: 1.8;
  color: rgba(255,255,255,0.7); max-width: 540px;
  margin-bottom: 34px;
  animation: ptFadeDown .8s ease .4s both;
}

.pt-actions {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 48px;
  animation: ptFadeDown .8s ease .5s both;
}
.pt-btn-main {
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  /*font-family: 'Plus Jakarta Sans', sans-serif;*/
  box-shadow: 0 6px 24px rgba(22,160,188,0.45);
  transition: all .3s; text-decoration: none; display: inline-block;
}
.pt-btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(22,160,188,0.6); }
.pt-btn-ghost {
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  /*font-family: 'Plus Jakarta Sans', sans-serif;*/
  transition: all .3s; text-decoration: none; display: inline-block;
}
.pt-btn-ghost:hover { border-color: var(--teal-light); background: rgba(93,214,236,0.1); }

@keyframes ptFadeDown { from{opacity:0;transform:translateY(-14px);} to{opacity:1;transform:translateY(0);} }

/* ── STANDARDS TICKER ── */
.pt-standards {
  position: relative; z-index: 15;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
  background: rgba(7,30,46,0.72); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 13px 0; margin-top: auto;
}
.pt-std-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 22px; border-right: 1px solid var(--line);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); transition: color .3s; cursor: default;
}
.pt-std-item:last-child { border-right: none; }
.pt-std-item:hover { color: var(--teal-pale); }
.pt-std-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; }

/* ── STATS BAR ── */
.pt-stats {
  position: relative; z-index: 15;
  display: flex;
  background: rgba(255,255,255,0.97);
  border-bottom: 3px solid var(--teal-mid);
}
.pt-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid var(--line-dark);
  transition: background .3s;
}
.pt-stat:last-child { border-right: none; }
.pt-stat:hover { background: rgba(30,143,168,0.04); }
.pt-stat-num {
  /*font-family: 'Syne', sans-serif; */
  font-weight: 700; font-size: 26px; line-height: 1;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.pt-stat-label { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #7aa5b5; }

/* ── WHATSAPP FLOAT BUTTON ── */
.pt-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer; text-decoration: none;
  transition: all .3s;
  animation: waBounce 3s ease-in-out 3s infinite;
}
.pt-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.pt-whatsapp svg { width: 30px; height: 30px; }
@keyframes waBounce {
  0%,100%{transform:scale(1);} 50%{transform:scale(1.08);}
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pt-nav { padding: 14px 20px; }
  .pt-nav-links, .pt-nav-cta { display: none; }
  .pt-content { padding: 36px 20px 0; }
  .pt-actions { flex-direction: column; gap: 10px; width: 100%; }
  .pt-btn-main, .pt-btn-ghost { width: 100%; text-align: center; }
  .pt-stats { flex-wrap: wrap; }
  .pt-stat { min-width: 50%; border-bottom: 1px solid var(--line-dark); }
  .pt-standards { display: none; }
  .pt-flying-plane, .pt-flying-plane-2 { display: none; }
}





/* ABOUT PAGE */
/* ── Section Helpers ── */
  .au-section { padding: 3rem 5%; }
  .au-section.shaded { background: #f7fbfd; }
  
/* ── Hero ── */
  .au-hero {
    background: linear-gradient(135deg, #061e2d 0%, #1a5f7a 55%, #2589a8 100%);
    padding: 5rem 5% 3.5rem; text-align: center; position: relative; overflow: hidden;
  }
  .au-hero::before { content: ''; position: absolute; right: -80px; top: -80px;
    width: 280px; height: 280px; border-radius: 50%; border: 55px solid rgba(75,184,212,0.1); }
  .au-hero::after { content: ''; position: absolute; left: -50px; bottom: -50px;
    width: 200px; height: 200px; border-radius: 50%; border: 40px solid rgba(75,184,212,0.07); }
  .au-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    color: #4bb8d4; margin-bottom: .7rem; position: relative; z-index: 2; }
  .au-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: .9rem; position: relative; z-index: 2; }
  .au-hero p { font-size: clamp(13px, 1.8vw, 15px); color: rgba(255,255,255,.78);
    max-width: 580px; margin: 0 auto 1.75rem; line-height: 1.75; position: relative; z-index: 2; }
  
  .au-founded { display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(125,212,232,.3);
    border-radius: 100px; padding: 7px 20px; font-size: 11.5px; color: rgba(255,255,255,.85);
    position: relative; z-index: 2; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .au-founded .highlight { color: #4bb8d4; font-weight: 700; }


  
/* ── Story + Stats ── */
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
  .story-card { background: #fff; border: 1px solid rgba(26,95,122,0.1);
    border-radius: 12px; padding: 1.4rem; border-top: 3px solid #4bb8d4; }
  .story-card h3 { font-size: 14px; font-weight: 700; color: #1a5f7a; margin-bottom: .5rem; }

  .story-card p { font-size: 13px; color: #4a6572; line-height: 1.7; }

  .au-stats-row { display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(26,95,122,0.1); border-radius: 12px; overflow: hidden; }
  .au-stat-item { text-align: center; padding: 1.2rem 1rem;
    border-right: 1px solid rgba(26,95,122,0.1); }
  .au-stat-item:last-child { border-right: none; }
  .au-stat-item:hover { background: #f0f8fb; }
  .stat-big { font-size: 2rem; font-weight: 800; color: #1a5f7a; line-height: 1; }
  .stat-big .sx { color: #4bb8d4; }
  .stat-sm { font-size: 10px; font-weight: 600; color: #6a8a98;
    text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }
 
  
  @media (max-width: 768px) {
    .story-grid, .mvg-grid { grid-template-columns: 1fr; }
    .au-stats-row { grid-template-columns: repeat(2, 1fr); }
    .au-stat-item:nth-child(2) { border-right: none; }
    .au-stat-item:nth-child(3), .au-stat-item:nth-child(4) { border-top: 1px solid rgba(26,95,122,0.1); }
}