/* ============================================================
   PIONIR STUDIO — Landing Jasa Pembuatan Website Company Profile
   Desain terinspirasi template DigMox (Space Grotesk + DM Sans,
   aksen gradient oranye #EF721F -> #FFAE2F, section gelap)
   ============================================================ */

:root {
  --thm-grad: linear-gradient(84.25deg, #EF721F 0%, #FFAE2F 100%);
  --thm-color: #EF721F;
  --thm-color-2: #FFAE2F;
  --secondary-color: #1A1A1A;
  --text-color: #555e68;
  --title-color: #1A1A1A;
  --dark-bg: #161616;
  --dark-bg-2: #1e1e1e;
  --text-font: "DM Sans", sans-serif;
  --title-font: "Space Grotesk", sans-serif;
  --border-light: #e8e8e8;
  --shadow: 0 10px 40px rgba(26, 26, 26, .08);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--text-font);
  color: var(--text-color);
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: all .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 70px; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.preloader .loader-text { font-family: var(--title-font); font-weight: 700; font-size: 30px; letter-spacing: 14px; color: var(--secondary-color); text-transform: uppercase; }
.preloader .bar { width: 140px; height: 3px; background: #eee; border-radius: 3px; overflow: hidden; }
.preloader .bar span { display: block; height: 100%; width: 0; background: var(--thm-grad); animation: loadbar 1s ease forwards; }
@keyframes loadbar { to { width: 100%; } }

/* ============ HEADER ============ */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; transition: all .35s; }
.header-lower {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 70px; transition: all .35s;
}
.main-header.fixed { background: #fff; box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.main-header.fixed .header-lower { padding: 12px 70px; }
.logo-box a { display: flex; align-items: center; gap: 10px; }
.logo-box .logo-text { font-family: var(--title-font); font-weight: 700; font-size: 28px; color: #fff; letter-spacing: -.5px; }
.logo-box .logo-text span { background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.main-header.fixed .logo-box .logo-text { color: var(--secondary-color); }
.logo-box img.logo-dark { display: none; }
.main-header.fixed .logo-box img.logo-light { display: none; }
.main-header.fixed .logo-box img.logo-dark { display: block; }

.main-menu > ul { display: flex; align-items: center; gap: 34px; }
.main-menu > ul > li { position: relative; }
.main-menu > ul > li > a {
  font-family: var(--title-font); font-weight: 600; font-size: 15.5px;
  color: #fff; text-transform: capitalize; padding: 8px 0; position: relative;
}
.main-menu > ul > li > a::after {
  content: ""; position: absolute; bottom: 2px; left: 0; width: 0; height: 2px;
  background: var(--thm-grad); transition: width .3s; border-radius: 2px;
}
.main-menu > ul > li > a:hover::after, .main-menu > ul > li > a.active::after { width: 100%; }
.main-header.fixed .main-menu > ul > li > a { color: var(--secondary-color); }

.header-right { display: flex; align-items: center; gap: 16px; }
.btn-call {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--title-font); font-weight: 600; color: #fff; font-size: 14.5px;
}
.btn-call .icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--thm-grad); font-size: 17px; }
.main-header.fixed .btn-call { color: var(--secondary-color); }
.btn-call small { display: block; font-weight: 400; color: #aaa; font-size: 12px; }
.main-header.fixed .btn-call small { color: #777; }

/* mobile nav toggler */
.mobile-nav-toggler { display: none; width: 46px; height: 46px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.3); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.main-header.fixed .mobile-nav-toggler { border-color: #ddd; }
.mobile-nav-toggler span { width: 20px; height: 2px; background: #fff; border-radius: 2px; display: block; }
.main-header.fixed .mobile-nav-toggler span { background: var(--secondary-color); }

/* ============ MOBILE MENU ============ */
.mobile-menu { position: fixed; inset: 0; z-index: 10000; visibility: hidden; opacity: 0; transition: all .3s; }
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.mobile-menu .menu-box {
  position: absolute; top: 0; right: 0; width: min(360px, 85vw); height: 100%;
  background: #fff; padding: 30px; overflow-y: auto; transform: translateX(100%); transition: transform .35s;
}
.mobile-menu.open .menu-box { transform: translateX(0); }
.mobile-menu .close-btn { text-align: right; font-size: 26px; color: var(--secondary-color); cursor: pointer; }
.mobile-menu .nav-logo { margin-bottom: 16px; }
.mobile-menu .nav-logo .logo-text { font-family: var(--title-font); font-weight: 700; font-size: 24px; color: var(--secondary-color); }
.mobile-menu .nav-logo .logo-text span { color: var(--thm-color); }
.mobile-menu ul.mobile-nav-list > li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu ul.mobile-nav-list > li > a { display: block; padding: 13px 0; font-family: var(--title-font); font-weight: 600; color: var(--secondary-color); font-size: 16px; }
.mobile-menu .menu-contact { margin-top: 26px; font-size: 14px; color: #666; }
.mobile-menu .menu-contact strong { color: var(--secondary-color); }

/* ============ BUTTONS ============ */
.theme-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: 50px; font-family: var(--title-font);
  font-weight: 700; font-size: 15px; color: #fff !important; background: var(--thm-grad);
  box-shadow: 0 12px 30px rgba(239, 114, 31, .3); border: none; cursor: pointer;
  transition: all .3s; justify-content: center;
}
.theme-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(239, 114, 31, .42); }
.theme-btn.dark-btn { background: var(--secondary-color); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.theme-btn.dark-btn:hover { background: #000; box-shadow: 0 18px 36px rgba(0,0,0,.28); }
.theme-btn.white-btn { background: #fff; color: var(--secondary-color) !important; box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.theme-btn.green-btn { background: #25D366; box-shadow: 0 12px 30px rgba(37, 211, 102, .3); }
.theme-btn.green-btn:hover { box-shadow: 0 18px 40px rgba(37, 211, 102, .45); }
.text-btn { font-family: var(--title-font); font-weight: 700; color: var(--thm-color); display: inline-flex; align-items: center; gap: 8px; }
.text-btn:hover { gap: 12px; color: var(--secondary-color); }

/* ============ HERO ============ */
.hero-section { position: relative; background: var(--secondary-color); color: #fff; padding: 190px 0 120px; overflow: hidden; }
.hero-section .hero-bg { position: absolute; inset: 0; opacity: .35; z-index: 0; }
.hero-section .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-section::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 20%, rgba(239,114,31,.35), transparent 55%),
              linear-gradient(100deg, rgba(0,0,0,.82) 20%, rgba(0,0,0,.45) 60%, rgba(239,114,31,.22));
}
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.hero-content .badge-pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,174,47,.4); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: #ffd9a8; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-content .badge-pill i { color: var(--thm-color-2); }
.hero-content h1 {
  color: #fff; font-size: clamp(38px, 4.6vw, 62px); letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-content h1 em { font-style: italic; background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { color: #cfd2d6; font-size: 17.5px; max-width: 560px; margin-bottom: 34px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-meta { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta .hm { display: flex; align-items: center; gap: 12px; }
.hero-meta .hm i { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,174,47,.15); color: var(--thm-color-2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex: 0 0 auto; }
.hero-meta .hm span { color: #fff; font-family: var(--title-font); font-weight: 600; font-size: 14.5px; }

/* Hero visual: browser mockup */
.hero-visual { position: relative; }
.browser-mock {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.45);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}
.browser-mock .bm-bar { background: #f0f1f3; padding: 12px 16px; display: flex; align-items: center; gap: 7px; }
.browser-mock .bm-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-mock .bm-bar i:nth-child(1) { background: #FF5F57; }
.browser-mock .bm-bar i:nth-child(2) { background: #FEBC2E; }
.browser-mock .bm-bar i:nth-child(3) { background: #28C840; }
.browser-mock .bm-bar .bm-url { margin-left: 10px; background: #e4e5e8; border-radius: 5px; flex: 1; padding: 3px 12px; font-size: 11px; color: #888; }
.browser-mock .bm-shot img { width: 100%; height: auto; display: block; }
.hero-float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25); display: flex; align-items: center; gap: 12px; z-index: 4;
}
.hero-float-card.fc1 { bottom: 30px; left: -36px; animation: floaty 4s ease-in-out infinite; }
.hero-float-card.fc2 { top: 40px; right: -30px; animation: floaty 4s ease-in-out infinite 1s; }
.hero-float-card .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--thm-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }
.hero-float-card.fc2 .ic { background: #25D366; }
.hero-float-card b { display: block; font-family: var(--title-font); font-size: 14px; color: var(--secondary-color); }
.hero-float-card span { font-size: 12px; color: #777; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* shape circle */
.hero-shape { position: absolute; border-radius: 50%; background: var(--thm-grad); filter: blur(2px); opacity: .16; z-index: 1; }
.hero-shape.s1 { width: 420px; height: 420px; top: -120px; right: -100px; }
.hero-shape.s2 { width: 260px; height: 260px; bottom: -80px; left: 30%; }

/* ============ SECTION BASE ============ */
.section { padding: 110px 0; position: relative; }
.section.dark { background: var(--dark-bg); }
.section.dark-2 { background: #f5f5f2; }
.section-title-wrap { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-title-wrap.left { text-align: left; margin-left: 0; }
.sec-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--thm-color);
  background: rgba(239,114,31,.1); margin-bottom: 16px; font-family: var(--title-font);
}
.section.dark .sec-badge { color: var(--thm-color-2); background: rgba(255,174,47,.12); }
.sec-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--thm-grad); }
.section-title { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -1px; margin-bottom: 14px; }
.section.dark .section-title { color: #fff; }
.section-title em { font-style: italic; background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section.dark .section-title em { background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec-subtitle { color: #6b747f; font-size: 17px; }
.section.dark .sec-subtitle { color: #b6babf; }

/* ============ WEBSITE TYPE CARDS (hero bawah) ============ */
.type-section { margin-top: -70px; position: relative; z-index: 6; padding-bottom: 110px; }
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.type-card {
  background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 34px 28px;
  box-shadow: var(--shadow); transition: all .35s; position: relative; overflow: hidden;
}
.type-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--thm-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.type-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(26,26,26,.14); }
.type-card:hover::before { transform: scaleX(1); }
.type-card .tc-icon { width: 68px; height: 68px; border-radius: 18px; background: rgba(239,114,31,.1); display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--thm-color); margin-bottom: 22px; transition: all .35s; }
.type-card:hover .tc-icon { background: var(--thm-grad); color: #fff; }
.type-card h3 { font-size: 20px; margin-bottom: 10px; }
.type-card p { font-size: 14.5px; margin-bottom: 18px; }
.type-card a { font-size: 14px; font-weight: 700; font-family: var(--title-font); color: var(--thm-color); display: inline-flex; align-items: center; gap: 7px; }

/* ============ BENEFIT / WHY (4 kartu) ============ */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 34px 28px; box-shadow: var(--shadow); transition: all .35s; position: relative; }
.benefit-card:hover { transform: translateY(-8px); }
.benefit-card .bc-num { position: absolute; top: 24px; right: 26px; font-family: var(--title-font); font-weight: 700; font-size: 46px; color: #f2f3f5; line-height: 1; }
.benefit-card .bc-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--thm-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; box-shadow: 0 12px 26px rgba(239,114,31,.3); }
.benefit-card:nth-child(2) .bc-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); box-shadow: 0 12px 26px rgba(79,172,254,.3); }
.benefit-card:nth-child(3) .bc-icon { background: linear-gradient(135deg, #f7971e, #ffd200); box-shadow: 0 12px 26px rgba(247,151,30,.3); }
.benefit-card:nth-child(4) .bc-icon { background: linear-gradient(135deg, #30cfd0, #330867); box-shadow: 0 12px 26px rgba(48,207,208,.3); }
.benefit-card h3 { font-size: 20px; margin-bottom: 10px; }
.benefit-card p { font-size: 14.8px; }

/* ============ PROCESS (3 langkah) ============ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 90px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, #e3e3e3 0 10px, transparent 10px 20px); }
.process-card { text-align: center; padding: 0 10px; position: relative; }
.process-card .pc-step {
  width: 110px; height: 110px; margin: 0 auto 26px; border-radius: 50%; background: #fff;
  border: 2px dashed #dcdcdc; display: flex; align-items: center; justify-content: center;
  font-family: var(--title-font); font-weight: 700; font-size: 40px; color: var(--thm-color); position: relative; z-index: 2;
}
.process-card .pc-step::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: rgba(239,114,31,.07); z-index: -1; }
.process-card h3 { font-size: 21px; margin-bottom: 12px; }
.process-card p { font-size: 15px; max-width: 330px; margin: 0 auto; }

/* ============ PRICING ============ */
.pricing-section { background: linear-gradient(165deg, #161616 0%, #23201c 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff; border-radius: 22px; padding: 38px 30px; display: flex; flex-direction: column;
  transition: all .35s; position: relative; overflow: hidden;
}
.price-card.featured { background: var(--thm-grad); color: #fff; }
.price-card.featured .pc-badge {
  position: absolute; top: 22px; right: -42px; transform: rotate(45deg); background: var(--secondary-color);
  color: #fff; font-size: 11px; font-weight: 700; padding: 6px 46px; letter-spacing: 1px; font-family: var(--title-font);
}
.price-card .pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.price-card .pc-tag { background: rgba(239,114,31,.1); color: var(--thm-color); font-family: var(--title-font); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase; }
.price-card.featured .pc-tag { background: rgba(255,255,255,.25); color: #fff; }
.price-card h3 { font-size: 21px; }
.price-card .pc-desc { font-size: 13.8px; color: #8b939c; margin-bottom: 16px; min-height: 42px; }
.price-card.featured .pc-desc { color: rgba(255,255,255,.9); }
.price-card .pc-price-label { font-size: 12.5px; color: #9aa1a9; text-transform: uppercase; letter-spacing: 1px; }
.price-card .pc-price { font-family: var(--title-font); font-weight: 700; font-size: 34px; color: var(--secondary-color); margin: 2px 0 4px; }
.price-card .pc-price small { font-size: 15px; font-weight: 500; color: #777; }
.price-card.featured .pc-price, .price-card.featured .pc-price small { color: #fff; }
.price-card .pc-yearly { font-size: 13px; color: #9aa1a9; margin-bottom: 20px; }
.price-card ul.pc-features { flex: 1; margin-bottom: 26px; }
.price-card ul.pc-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.3px; padding: 6.5px 0; color: #4a525c; }
.price-card ul.pc-features li i { color: var(--thm-color); margin-top: 5px; font-size: 12px; flex: 0 0 auto; }
.price-card.featured ul.pc-features li { color: #fff; }
.price-card.featured ul.pc-features li i { color: #fff; }
.price-card .theme-btn { width: 100%; }

/* ============ CLIENTS LOGO MARQUEE ============ */
.brand-strip { padding: 60px 0; background: #fff; border-bottom: 1px solid #f0f0f0; }
.brand-strip .bs-label { text-align: center; font-family: var(--title-font); font-weight: 700; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: #9aa1a9; margin-bottom: 26px; }
.marquee-track { overflow: hidden; position: relative; }
.marquee-track::before, .marquee-track::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.marquee-track::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-track::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-inner { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-inner .brand-chip {
  display: flex; align-items: center; gap: 9px; margin: 0 14px; padding: 12px 22px; background: #f6f7f8;
  border-radius: 50px; font-family: var(--title-font); font-weight: 700; font-size: 15px; color: #666; white-space: nowrap;
}
.marquee-inner .brand-chip i { color: var(--thm-color); }
.marquee-inner .brand-chip b { color: var(--secondary-color); font-weight: 700; }

/* ============ FEATURES (8 fitur) ============ */
.feature-section { background: #f7f8fa; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border-radius: 18px; padding: 30px 24px; border: 1px solid #f0f0f0;
  transition: all .3s; display: flex; gap: 16px; align-items: flex-start;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(26,26,26,.09); border-color: transparent; }
.feature-card .fc-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(239,114,31,.1); color: var(--thm-color); font-size: 21px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.feature-card:nth-child(2) .fc-icon { background: rgba(79,172,254,.12); color: #2f8fe0; }
.feature-card:nth-child(3) .fc-icon { background: rgba(37,211,102,.12); color: #1fae52; }
.feature-card:nth-child(4) .fc-icon { background: rgba(247,151,30,.12); color: #e8890c; }
.feature-card:nth-child(5) .fc-icon { background: rgba(136,84,208,.12); color: #7d4fd0; }
.feature-card:nth-child(6) .fc-icon { background: rgba(48,207,208,.12); color: #17b6b8; }
.feature-card:nth-child(7) .fc-icon { background: rgba(255,99,132,.12); color: #f03a5c; }
.feature-card:nth-child(8) .fc-icon { background: rgba(44,126,212,.12); color: #2c7ed4; }
.feature-card h3 { font-size: 16.5px; margin-bottom: 5px; }
.feature-card p { font-size: 13.6px; line-height: 1.65; }

/* ============ REASON (6 alasan) section dark ============ */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card { background: var(--dark-bg-2); border: 1px solid rgba(255,255,255,.07); border-radius: 20px; padding: 34px 28px; transition: all .35s; position: relative; }
.reason-card:hover { border-color: rgba(239,114,31,.5); transform: translateY(-7px); }
.reason-card .rc-num { font-family: var(--title-font); font-weight: 700; font-size: 15px; color: var(--thm-color-2); letter-spacing: 2px; margin-bottom: 14px; display: block; }
.reason-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.reason-card p { color: #a7adb4; font-size: 14.5px; }
.reason-card .rc-icon { position: absolute; top: 30px; right: 28px; font-size: 52px; color: rgba(255,255,255,.05); }

/* ============ PORTFOLIO ============ */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.portfolio-filter button {
  padding: 10px 24px; border-radius: 50px; border: 1.5px solid #e4e4e4; background: #fff;
  font-family: var(--title-font); font-weight: 600; font-size: 14px; color: #5a626b; cursor: pointer; transition: all .3s;
}
.portfolio-filter button:hover, .portfolio-filter button.active { background: var(--thm-grad); color: #fff; border-color: transparent; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  border-radius: 18px; overflow: hidden; position: relative; display: block; background: #fff;
  box-shadow: 0 8px 30px rgba(26,26,26,.07); transition: all .35s;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(26,26,26,.16); }
.portfolio-card .p-shot { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.portfolio-card .p-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s; }
.portfolio-card:hover .p-shot img { transform: scale(1.06); }
.portfolio-card .p-body { padding: 18px 20px; }
.portfolio-card .p-domain { font-size: 12.5px; color: var(--thm-color); font-weight: 700; font-family: var(--title-font); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.portfolio-card .p-domain i { font-size: 10px; }
.portfolio-card h3 { font-size: 17px; margin-bottom: 2px; }
.portfolio-card .p-cat { font-size: 13px; color: #8b939c; }
.portfolio-more { text-align: center; margin-top: 46px; }

/* ============ CTA KONSULTASI (gradient) ============ */
.consult-section { padding: 0; }
.consult-box {
  background: var(--thm-grad); border-radius: 28px; padding: 64px 60px; display: grid;
  grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; color: #fff;
  box-shadow: 0 30px 80px rgba(239,114,31,.35); position: relative; overflow: hidden; margin: 110px 0;
}
.consult-box::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); top: -140px; right: -100px; }
.consult-box::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.09); bottom: -100px; left: 34%; }
.consult-box h2 { color: #fff; font-size: clamp(26px, 2.6vw, 38px); margin-bottom: 12px; letter-spacing: -.5px; }
.consult-box p { color: rgba(255,255,255,.92); font-size: 16.5px; }
.consult-box .cb-right { position: relative; z-index: 2; text-align: center; }
.consult-box .cb-wa { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--secondary-color) !important; padding: 17px 34px; border-radius: 60px; font-family: var(--title-font); font-weight: 700; font-size: 16px; box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.consult-box .cb-wa i { color: #25D366; font-size: 22px; }
.consult-box .cb-wa:hover { transform: translateY(-3px) scale(1.02); }

/* ============ TESTIMONIAL ============ */
.testi-slider .testi-item {
  border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(26,26,26,.1);
  border: 1px solid #f0f0f0; background: #fff; margin: 6px;
}
.testi-item img { width: 100%; height: auto; display: block; }
.testi-item .ti-cap { padding: 10px 14px; font-size: 12.5px; color: #666; background: #fafafa; text-align: center; }
.testi-slider .owl-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-slider .owl-nav button {
  width: 48px; height: 48px; border-radius: 50% !important; background: #fff !important;
  border: 1.5px solid #e4e4e4 !important; color: var(--secondary-color) !important;
  font-size: 18px !important; display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.testi-slider .owl-nav button:hover { background: var(--thm-grad) !important; color: #fff !important; border-color: transparent !important; }
.testi-slider .owl-dots { display: none; }
.testi-note { text-align: center; margin-top: 26px; font-size: 14.5px; color: #8b939c; }
.testi-note i { color: var(--thm-color); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 850px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #ececec; border-radius: 16px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: 0 14px 40px rgba(26,26,26,.08); border-color: transparent; }
.faq-q { padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; }
.faq-q h3 { font-size: 16.5px; margin: 0; font-weight: 600; }
.faq-q .fq-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(239,114,31,.1); color: var(--thm-color); display: flex; align-items: center; justify-content: center; font-size: 13px; flex: 0 0 auto; transition: all .3s; }
.faq-item.open .fq-icon { background: var(--thm-grad); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 26px 22px; font-size: 15px; color: #6b747f; }

/* ============ FINAL CTA ============ */
.final-cta { background: var(--secondary-color); color: #fff; position: relative; overflow: hidden; padding: 110px 0; }
.final-cta::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,114,31,.35), transparent 65%); top: -180px; right: -120px; }
.final-cta::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,174,47,.22), transparent 65%); bottom: -160px; left: -100px; }
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(30px, 3.6vw, 52px); margin-bottom: 14px; letter-spacing: -1px; }
.final-cta h2 em { font-style: italic; background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta p { color: #b6babf; max-width: 620px; margin: 0 auto 36px; font-size: 17px; }
.final-cta .fc-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.main-footer { background: #101010; color: #9aa1a9; padding: 80px 0 0; position: relative; }
.main-footer .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo .logo-text { font-family: var(--title-font); font-weight: 700; font-size: 28px; color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-logo .logo-text span { background: var(--thm-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-logo p { font-size: 14.5px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 11px; font-size: 14.5px; }
.footer-col ul li a:hover { color: var(--thm-color-2); padding-left: 4px; }
.footer-col ul li i { margin-right: 9px; color: var(--thm-color); font-size: 12px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px; font-size: 14.5px; }
.footer-contact li i { margin-top: 5px; color: var(--thm-color); font-size: 14px; }
.footer-contact li a:hover { color: var(--thm-color-2); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 14px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom a { color: var(--thm-color-2); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; }
.footer-socials a:hover { background: var(--thm-grad); }

/* scroll top */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--thm-grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 999; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: all .35s; box-shadow: 0 14px 30px rgba(239,114,31,.35);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 100px; right: 30px; z-index: 998; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px;
  box-shadow: 0 16px 36px rgba(37,211,102,.4); animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
  .container-fluid, .header-lower { padding-left: 30px; padding-right: 30px; }
  .main-menu > ul { gap: 22px; }
  .type-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .main-menu, .btn-call { display: none; }
  .mobile-nav-toggler { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-float-card.fc1 { left: -10px; }
  .hero-float-card.fc2 { right: -10px; }
  .section { padding: 85px 0; }
  .reason-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .consult-box { grid-template-columns: 1fr; text-align: center; padding: 50px 30px; }
  .consult-box p { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .header-lower, .main-header.fixed .header-lower { padding: 14px 20px; }
  .type-grid, .benefit-grid, .pricing-grid, .testi-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section { padding-top: 150px; }
  .hero-meta { gap: 14px; }
  .section-title-wrap { margin-bottom: 40px; }
  .consult-box { margin: 70px 0; }
  .portfolio-filter button { padding: 8px 16px; font-size: 13px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
