/* ========================================= */
/* ROOT */
/* ========================================= */

:root{

  --primary:#00b6c4;
  --secondary:#008fa1;

  --navy:#0b2533;
  --dark:#091a2a;

  --accent:#ff6b35;

  --white:#ffffff;
  --soft:#f4f8fa;

  --text:#243746;
  --muted:#61707f;

  --border:
  1px solid rgba(0,0,0,0.08);

  --shadow:
  0 10px 35px rgba(0,0,0,0.05);

}

/* ========================================= */
/* RESET */
/* ========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Inter',sans-serif;

  background:var(--soft);

  color:var(--text);

  overflow-x:hidden;

  line-height:1.7;

}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

.container{

  width:min(1280px,90%);
  margin:auto;

}

section{

  padding:70px 0;

  position:relative;

  overflow:hidden;

}

/* ========================================= */
/* MOBILE NAV */
/* ========================================= */

.menu-toggle{
  display:none;
}

@media(max-width:768px){

  .menu-toggle{

    display:flex;

    align-items:center;
    justify-content:center;

    width:50px;
    height:50px;

    margin-left:auto;

    cursor:pointer;

    font-size:32px;

    color:#02131f;

    z-index:999999;

  }

  .navbar nav{

  top:50%;
  translate:0 -50%;
  position:fixed !important;

  top:90px !important;
  right:-100% !important;
  left:auto !important;

  transform:none !important;
  translate:none !important;

  width:280px;
  height:calc(100vh - 90px);

  background:white;

  display:flex !important;

  flex-direction:column;

  align-items:flex-start;
  justify-content:left !important;

  padding:40px 30px;

  gap:24px;

  margin:0;

  box-shadow:
  -10px 0 40px rgba(0,0,0,0.08);

  transition:0.4s ease;

  z-index:99999;

}

  .navbar nav.active{

    right:0 !important;

  }

  .navbar nav a{

    font-size:16px;

  }

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.site-header{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:9999;

  background:
  rgba(255,255,255,0.82);

  backdrop-filter:blur(16px);

  border-bottom:
  1px solid rgba(255,255,255,0.2);

  box-shadow:
  0 8px 30px rgba(0,0,0,0.04);

}

.navbar{

  position:relative;

  height:90px;

  display:flex;
  align-items:center;

}

/* LOGO */

.brand{

  display:flex;
  align-items:center;
  gap:14px;

  z-index:2;

}

.logo-img{

  width:48px;
  height:48px;

  object-fit:contain;

}

.brand-text{

  font-size:28px;
  font-weight:800;

  color:#02131f;

}

/* NAV */

.navbar nav{

  position:absolute;

  left:50%;
  transform:translateX(-50%);

  display:flex;
  align-items:center;

  gap:34px;

}

.navbar nav a{

  position:relative;

  color:#425466;

  font-size:15px;
  font-weight:500;

  transition:0.3s ease;

}

.navbar nav a:hover,
.navbar nav a.active{

  color:var(--primary);

}

.navbar nav a::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  border-radius:50px;

  background:var(--primary);

  transition:0.35s ease;

}

.navbar nav a:hover::after,
.navbar nav a.active::after{

  width:100%;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.services-hero{

  padding:
  180px 0 80px;

  background:
  linear-gradient(
    180deg,
    rgba(0,182,196,0.08),
    rgba(0,182,196,0.03)
  );

}

.hero-inner{

  max-width:900px;

}

.hero-tag{

  display:inline-block;

  font-size:12px;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#61707f;

  margin-bottom:18px;

}

.services-hero h1{

  font-size:52px;

  line-height:1;

  letter-spacing:-2px;

  margin-bottom:20px;

  color:#02131f;

}

.accent{

  color:var(--accent);

}

.services-hero p{

  max-width:720px;

  font-size:17px;

  line-height:1.9;

  color:#61707f;

}

/* ========================================= */
/* VISUAL SECTION */
/* ========================================= */

.services-visual{

  padding-top:20px;

}

.services-visual-grid{

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:center;

}

/* CONTENT */

.services-visual-content h2{

  font-size:40px;

  line-height:1.1;

  letter-spacing:-1px;

  margin:
  14px 0 20px;

  color:#02131f;

}

.services-visual-content p{

  font-size:17px;

  line-height:1.9;

  color:#61707f;

  max-width:560px;

}

.section-tag{

  display:inline-block;

  font-size:12px;

  letter-spacing:2px;

  text-transform:uppercase;

  color:var(--primary);

}

/* POINTS */

.visual-points{

  margin-top:28px;

  display:flex;
  flex-direction:column;

  gap:14px;

}

.visual-point{

  display:flex;
  align-items:center;

  gap:14px;

  font-weight:600;

  color:#243746;

}

.visual-point span{

  width:10px;
  height:10px;

  border-radius:50%;

  background:var(--primary);

}

/* IMAGES */

.services-visual-images{

  position:relative;

  min-height:500px;

}

.img-main{

  width:100%;
  height:500px;

  object-fit:cover;

  border-radius:24px;

}

.img-small{

  position:absolute;

  width:200px;

  border-radius:20px;

  border:6px solid white;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

}

.img-small-1{

  left:-30px;
  bottom:30px;

}

.img-small-2{

  right:-20px;
  top:30px;

}

/* ========================================= */
/* SECTION BOX */
/* ========================================= */

.section-box{

  padding-top:25px;

}

.section-box .container{

  background:white;

  border-radius:24px;

  padding:50px;

  border:var(--border);

  box-shadow:var(--shadow);

}

.section-box h2{

  font-size:36px;

  line-height:1.1;

  letter-spacing:-1px;

  color:#02131f;

  margin-bottom:14px;

}

.section-sub{

  font-size:16px;

  line-height:1.9;

  color:#61707f;

  margin-bottom:36px;

  max-width:860px;

}

/* ========================================= */
/* ACCORDION */
/* ========================================= */

.accordion-list{

  display:flex;
  flex-direction:column;

  gap:18px;

}

.acc-item{

  background:white;

  border:
  1px solid rgba(0,0,0,0.08);

  border-radius:20px;

  overflow:hidden;

  transition:0.35s ease;

}

.acc-item:hover{

  transform:translateY(-3px);

  box-shadow:
  0 12px 28px rgba(0,0,0,0.04);

}

.acc-row{

  display:flex;
  align-items:center;

  gap:18px;

  padding:24px;

  cursor:pointer;

}

/* BADGE */

.badge{

  width:54px;
  height:54px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--accent);

  color:white;

  font-size:16px;
  font-weight:700;

  flex-shrink:0;

}

/* TITLE */

.acc-title{

  flex:1;

}

.title-main{

  font-size:20px;

  font-weight:700;

  color:#1f3344;

  margin-bottom:6px;

  line-height:1.4;

}

.title-sub{

  color:#61707f;

  font-size:14px;

}

/* TOGGLE */

.acc-toggle{

  width:40px;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:
  rgba(0,182,196,0.08);

}

/* PANEL */

.acc-panel{

  max-height:0;

  overflow:hidden;

  transition:0.45s ease;

  opacity:0;

}

.acc-panel.open{

  max-height:1000px;

  opacity:1;

}

.panel-card{

  padding:
  0 30px 30px 96px;

}

.panel-card p{

  font-size:16px;

  line-height:1.9;

  color:#61707f;

}

/* ========================================= */
/* IMAGE STRIP */
/* ========================================= */

.image-strip{

  padding-top:15px;

}

.image-strip-grid{

  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:20px;

}

.image-strip-grid img{

  height:300px;

  object-fit:cover;

  border-radius:20px;

}

/* ========================================= */
/* EDITORIAL SECTION */
/* ========================================= */

.editorial-image-section{

  background:
  linear-gradient(
    180deg,
    rgba(0,182,196,0.08),
    rgba(0,182,196,0.03)
  );

}

.editorial-grid{

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:center;

}

.editorial-image img{

  height:500px;

  object-fit:cover;

  border-radius:24px;

}

.editorial-content h2{

  font-size:40px;

  line-height:1.1;

  letter-spacing:-1px;

  margin:
  16px 0 20px;

  color:#02131f;

}

.editorial-content p{

  font-size:17px;

  line-height:1.9;

  color:#61707f;

}

/* ========================================= */
/* HOW WE WORK */
/* ========================================= */

.how-we-work-section{

  background:
  linear-gradient(
    180deg,
    rgba(0,182,196,0.05),
    rgba(0,182,196,0.02)
  );

}

.section-header{

  text-align:center;

  margin-bottom:50px;

}

.section-header h2{

  font-size:40px;

  line-height:1.1;

  letter-spacing:-1px;

  margin-top:14px;

  color:#02131f;

}

.section-header p{

  max-width:700px;

  margin:auto;
  margin-top:18px;

  font-size:17px;

  line-height:1.9;

  color:#61707f;

}

/* FLOW */

.phases-container{

  display:flex;
  align-items:center;
  justify-content:center;

  gap:24px;

}

.phase-card{

  flex:1;

  background:white;

  padding:38px;

  border-radius:22px;

  border:var(--border);

  transition:0.35s ease;

}

.phase-card:hover{

  transform:translateY(-5px);

  box-shadow:
  0 14px 32px rgba(0,0,0,0.05);

}

.phase-number{

  width:54px;
  height:54px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--accent);

  color:white;

  font-size:15px;
  font-weight:700;

  margin-bottom:24px;

}

.phase-card h3{

  font-size:28px;

  margin-bottom:22px;

  color:#02131f;

}

.phase-card ul{

  display:flex;
  flex-direction:column;

  gap:14px;

}

.phase-card li{

  position:relative;

  padding-left:18px;

  color:#61707f;

}

.phase-card li::before{

  content:'';

  position:absolute;

  left:0;
  top:11px;

  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--primary);

}

.phase-separator{

  font-size:38px;

  color:#61707f;

}

/* ========================================= */
/* STORY */
/* ========================================= */

.story-block{

  margin-top:60px;

  background:white;

  padding:55px;

  border-radius:24px;

  border:var(--border);

  box-shadow:var(--shadow);

}

.story-block h3{

  font-size:38px;

  line-height:1.1;

  margin:
  14px 0 20px;

  color:#02131f;

}

.story-block p{

  font-size:16px;

  line-height:2;

  color:#61707f;

  margin-top:18px;

}

/* ========================================= */
/* TESTIMONIALS */
/* ========================================= */

.testimonials-section{

  padding-top:35px;

}

.testi-grid{

  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:22px;

}

.testi-card{

  background:white;

  padding:32px;

  border-radius:20px;

  border:var(--border);

  box-shadow:var(--shadow);

}

.testi-name{

  font-size:20px;

  font-weight:700;

  margin-bottom:14px;

  color:#02131f;

}

.testi-card p{

  font-size:15px;

  line-height:1.9;

  color:#61707f;

}

/* ========================================= */
/* CONTACT */
/* ========================================= */

.contact-section{

  background:
  linear-gradient(
    180deg,
    rgba(0,182,196,0.08),
    rgba(0,182,196,0.03)
  );

}

.contact-grid{

  display:grid;
  grid-template-columns:0.9fr 1.1fr;

  gap:80px;

}

.footer-logo{

  width:140px;

}

.contact-brand p{

  margin-top:22px;

  max-width:420px;

  line-height:1.9;

  color:#61707f;

}

/* SOCIALS */

.socials{

  display:flex;

  margin-top:24px;

}

.socials a{

  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:white;

  color:#02131f;

  font-size:18px;

  box-shadow:var(--shadow);

}

/* COLS */

.contact-cols{

  display:grid;
  grid-template-columns:
  repeat(3,1fr);

  gap:30px;

}

.contact-cols h5{

  font-size:20px;

  margin-bottom:18px;

  color:#02131f;

}

.contact-cols li{

  margin-bottom:14px;

  color:#61707f;

  line-height:1.8;

}

.contact-cols a{

  color:#61707f;

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.site-footer{

  background:#02131f;

  padding:24px 0;

  text-align:center;

}

.site-footer p{

  color:
  rgba(255,255,255,0.7);

  font-size:14px;

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1100px){

  .services-visual-grid,
  .editorial-grid,
  .contact-grid{

    grid-template-columns:1fr;

  }

  .phases-container{

    flex-direction:column;

  }

  .phase-separator{

    display:none;

  }

  .image-strip-grid,
  .testi-grid{

    grid-template-columns:1fr;

  }

}

@media(max-width:768px){

  section{

    padding:55px 0;

  }

  .services-hero{

    padding:
    160px 0 60px;

  }

  .services-hero h1{

    font-size:40px;

  }

  .services-visual-content h2,
  .editorial-content h2,
  .section-box h2,
  .section-header h2,
  .story-block h3{

    font-size:32px;

  }

  .section-box .container{

    padding:34px;

  }

  .img-small{

    display:none;

  }

  .img-main,
  .editorial-image img{

    height:400px;

  }

  .contact-cols{

    grid-template-columns:1fr;

  }

  .panel-card{

    padding:
    0 24px 24px 24px;

  }

}