    /* ── TOKENS ── */
    :root {
		--bg:           #c2e8ff;
		--bg-alt:        #EAF4FF;
		--surface:       #F7FBFF;
		--surface-2:     #FFFFFF;
		--accent:       #1E5AA8;
		--accent-mid:   #2F7DE1;
		--accent-light: #6AA9FF;
		--accent-ghost:  rgba(30,90,168,0.08);
		--accent-border: rgba(30,90,168,0.15);
		--text-1:        #10233F;
		--text-2:        #4A6385;
		--text-3:        #7A8FAE;
		--border:        rgba(16,35,63,0.08);
		--shadow-sm:     0 2px 12px rgba(16,35,63,0.06);
		--shadow-md:     0 8px 32px rgba(16,35,63,0.10);
		--shadow-lg:     0 24px 64px rgba(16,35,63,0.13);
		--silk:          cubic-bezier(0.16, 1, 0.3, 1);
		--silk-dur:     0.8s;
		--radius:       16px;
		--radius-lg:    24px;
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-1);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ── SUBTLE NOISE TEXTURE ── */


    /* ── UTILITY ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

    .judul-bagian{
    display:inline-block;

    font-family:"Playfair Display", Georgia, serif;
    font-size: clamp(1.95rem, 3.75vw, 3.15rem);
    font-weight:700;
    letter-spacing:-0.04em;
    line-height:1.1;
    color:var(--accent);

    background:var(--accent-ghost);
    border:1px solid var(--accent-border);
    padding:6px 24px;
    border-radius:100px;

    margin-bottom:24px;
}
        
    

    .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.15; color: var(--text-1);
    }
    .section-title em {
      font-style: italic;
      font-family: 'Playfair Display', serif;
      color: var(--accent);
    }
    .section-sub {
      font-size: 1.0625rem; line-height: 1.75;
      color: var(--text-2); max-width: 520px; margin-top: 16px;
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--silk), transform 0.7s var(--silk); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════════════
       1. NAV
    ══════════════════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 0;
      transition: padding var(--silk-dur) var(--silk), background var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .nav.scrolled {
      padding: 12px 0;
      background: rgba(240,247,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1160px; margin: 0 auto; padding: 0 32px;
    }
    /*.nav-logo {
      font-size: 1.25rem; font-weight: 700; letter-spacing: -0.04em;
      color: var(--text-1);
    }*/
    .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex:1;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: var(--text-1);
            text-decoration: none;
        }
    .nav-logo span { 
        color: var(--accent);
        display: inline;}
    .nav-links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-links a {
      font-size: 0.9rem; font-weight: 500; color: var(--text-2);
      position: relative; padding: 7px 16px; border-radius: 100px;
      background: transparent;
      box-shadow: inset 0 0 0 0px var(--accent-border);
      transition: color 0.4s var(--silk), background 0.4s var(--silk), box-shadow 0.4s var(--silk);
    }
    .nav-links a:hover {
      color: var(--accent);
      background: var(--accent-ghost);
      box-shadow: inset 0 0 0 1px var(--accent-border);
    }
    .nav-cta {
      display: flex; align-items: center; gap: 12px;
    }
    
    .btn-primary {
      font-size: 0.875rem; font-weight: 600; color: #fff;
      background: var(--accent); padding: 10px 22px; border-radius: 100px;
      transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
      box-shadow: 0 4px 16px rgba(26,122,110,0.25);
    }
    .btn-primary:hover {
      background: var(--accent-mid);
      transform: scale(1.02);
      box-shadow: 0 6px 24px rgba(26,122,110,0.35);
    }

    /* Hamburger */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 28px; padding: 4px; cursor: pointer;
    }
    
/* .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
    cursor: pointer;
}*/
    
    .nav-hamburger span {
      display: block; height: 2px; background: var(--text-1);
      border-radius: 2px; transition: all 0.4s var(--silk);
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile Menu */
 .mobile-menu {
      position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 999; 
      background: #f7fbff;
      border-radius: 20px;
      border: 1px solid rgba(30,90,168,.12);

    box-shadow: 0 12px 30px rgba(0,0,0,.12);
      max-height: 0;
      display: flex; 
      flex-direction: column; 
      align-items: center;
      justify-content: flex-start;
      
      gap: 0;
      opacity: 0; pointer-events: none;
      transition: max-height .35s ease, opacity .25s ease;
     overflow: hidden;
      padding: 20px 32px;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { 
max-height: 50%;
        opacity: 1;
        pointer-events: auto;}
    .mobile-menu a {
      font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em;
      color: var(--text-1); padding: 14px 0; width: 100%; text-align: center;
      border-bottom: 1px solid var(--border);
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s var(--silk), transform 0.5s var(--silk), color 0.3s;
    }
    .mobile-menu a:first-child { border-top: 1px solid var(--border); }
    .mobile-menu.open a { opacity: 1; transform: none; }
    .mobile-menu a:hover { color: var(--accent); }
    .mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu a:nth-child(2) { transition-delay: 0.10s; }
    .mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
    .mobile-menu a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu a:nth-child(6) { transition-delay: 0.30s; }
    .mobile-menu .mobile-cta {
      margin-top: 28px;
      font-size: 0.9375rem; font-weight: 600;
      background: var(--accent); color: #fff;
      padding: 14px 40px; border-radius: 100px;
      border: none;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s var(--silk) 0.35s, transform 0.5s var(--silk) 0.35s, background 0.3s;
    }
    .mobile-menu.open .mobile-cta { opacity: 1; transform: none; }
    .mobile-menu .mobile-cta:hover { background: var(--accent-mid); }
  /* ══════════════════════════════════════════
       2. HERO
    ══════════════════════════════════════════ */
    .hero {
            min-height: 100px;
            padding: 120px 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
    .hero-row{
            align-items:center;
        }    
    .hero-inner {
            display: block;
        }
        
    .hero-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
    .hero-logo {
            width: 140px;
            height: auto;
            margin-bottom: 20px;
        }
        
    .hero-title {
          font-size: clamp(2.6rem, 5vw, 4.2rem);
          font-weight: 700; letter-spacing: -0.04em; line-height: 1.1;
          margin-bottom: 24px;
        }
        
    .hero-sub {
            max-width: none;
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 1.8;
        }
    .hero-title em {
          font-style: italic;
          font-family: 'Playfair Display', serif;
          color: var(--accent);
        }
        
    /* ══════════════════════════════════════════
       BG Church
    ══════════════════════════════════════════ */
        
    .bg-church{
        background: var(--surface);
            }
        .section-title{
            font-weight:700;
        }    
    /* VISI MISI */
        .vision-mission{
                padding-left:30px;
            }
        .vision-box{
            background: var(--text-1);
            border-radius:25px;
            padding:35px;
            height:100%;
        
            box-shadow:
            0 10px 30px rgba(0,0,0,.08);
        }
        
        .section-header{
            display:flex;
            align-items:center;
            gap:20px;
            margin-bottom:20px;
            justify-content:flex-start;
            
        }
        
        .section-header h2{
            margin:0;
            font-weight:700;
            color: var(--accent);
        }
        
        .icon-circle{
            width:60px;
            height:60px;
        
            background:var(--accent);
            color:#fff;
        
            border-radius:50%;
        
            display:flex;
            align-items:center;
            justify-content:center;
        
            font-size:26px;
            flex-shrink:0;
        }
        
        .vision-text{
    text-align:left;
    color:var(--accent);
    margin-bottom:30px;
}

.vision-text::after{
    content:"";
    display:block;
    max-width:100%;
    margin:25px auto 0;
    border-bottom:1px solid rgba(37,99,235,.2);
}
        .mission-list{
            max-width:100%;
            margin-left:auto;
            margin-right:auto;
            margin-top:20px;
            padding-left:25px;
            border-bottom:1px solid rgba(37,99,235,.2);
             }
        
        .mission-list li{
            margin-bottom:10px;
            line-height:1.6;
            color:var(--accent);
            text-align:left;
             }
       
        .bg-church ol{
            line-height:1.3;
        }
        
        .bg-church li{
            padding-left:8px;
        }
    
     /* ══════════════════════════════════════════
       schedule
    ══════════════════════════════════════════ */
    
    .schedule-phone-card{
            background:var(--bg);
            border-radius:24px;
            padding:24px;
            height:100%;
            width:100%;
        
            border:1px solid rgba(30,90,168,.12);
        
            box-shadow:
                0 12px 30px rgba(0,0,0,.08),
                0 2px 8px rgba(0,0,0,.05);
        
            overflow-y:auto;
        }
    
    .schedule-time{
            text-align:center;
            font-size:1.4rem;
            font-weight:700;
            color:#1e5aa8;
            margin-bottom:20px;
        }
    
    .schedule-item{
            padding:12px 0;
            border-bottom:1px solid rgba(0,0,0,.08);
        }
  
    
    .service-name{
            font-weight:600;
            color:#1e5aa8;
            margin-bottom:6px;
        }
 

    /* JADWAL */
        .schedule-card{
            position:relative;
        
            background:#f4f9ff;
            border:2px solid #d6e9ff;
            border-radius:25px;
        
            padding:25px;
            height:100%;
        
            transition:.3s;
        
            box-shadow:
            0 10px 30px rgba(0,114,206,.08);
        }
        
        .schedule-card::before{
            content:'';
        
            position:absolute;
            top:0;
            left:0;
            right:0;
        
            height:6px;
        
            background:linear-gradient(
                90deg,
                #0072CE,
                #66B3FF
            );
        
            border-radius:25px 25px 0 0;
        }
        
        .schedule-card:hover{
            transform:translateY(-5px);
        
            border-color:#0072CE;
        
            box-shadow:
            0 15px 35px rgba(0,114,206,.18);
        }
        
        .schedule-card h4{
            color:#0054A6;
            font-weight:700;
        
            margin-bottom:20px;
            padding-bottom:12px;
        
            border-bottom:2px solid #d6e9ff;
        }
        
        .schedule-item{
            margin-bottom:15px;
            padding-bottom:12px;
        
            border-bottom:1px solid #eee;
        }
        
        .schedule-item:last-child{
            margin-bottom:0;
            padding-bottom:0;
            border-bottom:none;
        }
        
      
        
        .location{
            margin-top:4px;
        
            color:#666;
            font-size:.95rem;
        }    
        
        
    /* ══════════════════════════════════════════
       3. LOGO TICKER
    ══════════════════════════════════════════ */
    .ticker-section {
      padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden; position: relative;
    }
    .ticker-label {
      text-align: center; font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text-3); font-weight: 600;
      margin-bottom: 28px;
    }
    .ticker-track-wrap { overflow: hidden; }
    .ticker-track {
      display: flex; align-items: center; gap: 64px;
      width: max-content;
      animation: ticker 28s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.03em;
      color: var(--text-3); white-space: nowrap; flex-shrink: 0;
      transition: color 0.3s;
    }
    .ticker-item:hover { color: var(--accent); }
    .ticker-item-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ticker-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--accent-light); flex-shrink: 0; opacity: 0.5;
    }

    /* ══════════════════════════════════════════
       4. WARTA
    ══════════════════════════════════════════ */
    .warta-section { padding: 120px 0; }
    .warta-header { text-align: center; margin-bottom: 80px; }
    .warta-header .section-sub { margin: 16px auto 0; text-align: center; }

    .warta-row {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 80px; margin-bottom: 100px;
    }
    .warta-row:last-child { margin-bottom: 0; }
    .warta-row.reverse { direction: rtl; }
    .warta-row.reverse > * { direction: ltr; }

    .warta-content {}
    .warta-number {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent-light);
      margin-bottom: 16px;
    }
    .warta-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; letter-spacing: -0.03em; line-height: 1.2;
      margin-bottom: 16px;
    }
 
    .warta-actions{
        display:flex;
        justify-content:center;
        align-items:center;
        gap:14px;
        flex-wrap:wrap;
    }

    .btn-outline-lg {
        background: var(--surface);
      font-size: 0.9375rem; font-weight: 500; color: var(--accent);
      border: 1.5px solid var(--accent-border); padding: 13px 28px; border-radius: 100px;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.4s var(--silk), border-color 0.4s var(--silk), transform var(--silk-dur) var(--silk);
    }
    .btn-outline-lg:hover { background: var(--accent-ghost); border-color: var(--accent); transform: scale(1.02); }

    .warta-desc {
      font-size: 1rem; line-height: 1.75; color: var(--text-2); margin-bottom: 28px;
    }
    .warta-checklist { display: flex; flex-direction: column; gap: 10px; }
    .warta-check {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; color: var(--text-2);
    }
    .check-icon {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
      color: var(--accent); font-size: 11px; font-weight: 700;
    }

    .warta-visual {
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .warta-visual:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
    .warta-visual-inner {
      width: 85%; display: flex; flex-direction: column; gap: 12px;
    }
    .fv-row { display: flex; gap: 12px; }
    .fv-card {
      flex: 1; background: var(--surface-2); border-radius: var(--radius);
      border: 1px solid var(--border); padding: 16px;
      box-shadow: var(--shadow-sm);
    }
    .fv-card-label { font-size: 0.72rem; color: var(--text-3); font-weight: 500; margin-bottom: 6px; }
    .fv-card-val { font-size: 1.3rem; font-weight: 700; color: var(--text-1); letter-spacing: -0.03em; }
    .fv-card-bar {
      height: 4px; border-radius: 2px; margin-top: 10px;
      background: var(--bg); overflow: hidden;
    }
    .fv-card-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
    .fv-wide { flex: 2; }
    .fv-list { display: flex; flex-direction: column; gap: 8px; }
    .fv-list-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 12px; background: var(--bg); border-radius: 8px;
      font-size: 0.8rem;
    }
    .fv-list-name { color: var(--text-2); font-weight: 500; }
    .fv-pill {
      font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
    }
    .fv-pill.green { background: rgba(26,122,110,0.12); color: var(--accent); }
    .fv-pill.blue  { background: rgba(42,157,143,0.12); color: var(--accent-mid); }
    .fv-pill.dim   { background: var(--border); color: var(--text-3); }
    
    /* ══════════════════════════════════════════
       DOKUMEN
    ══════════════════════════════════════════ */
 
        .doc-grid{
            display:grid;
            grid-template-columns:repeat(4, 1fr);
            gap:14px;
            margin-top:24px;
        }
            
    .doc-card{
        display:inline-flex;
        align-items:center;
        gap:10px;
    
        width:100%;
        min-width:300px;
        max-width:800px;
    
        background:var(--accent-light);
        backdrop-filter:blur(10px);
    
        padding:10px 16px;
    
        border-radius:999px;
    
        text-decoration:none;
        color:var(--surface);
    
        border:1px solid rgba(30,90,168,.08);
    
        box-shadow:
            0 4px 14px rgba(30,90,168,.06);
    
        transition:.25s ease;
    }
    
    .doc-card:hover{
        transform:translateY(-2px);
    
        background:#ffffff;
        color:var(--text-3);
    
        box-shadow:
            0 10px 24px rgba(30,90,168,.12);
    }
    
    .doc-icon{
        width:30px;
        height:30px;
    
        border-radius:9px;
    
        display:flex;
        align-items:center;
        justify-content:center;
    
        background:rgba(255,187,44,.12);
    
        flex-shrink:0;
    }
    
    .doc-icon i{
        font-size:14px;
        color:#ffbb2c;
    }
    
    .doc-info{
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:260px;
    }
    
    .doc-info span{
        font-size:.93rem;
        font-weight:600;
        line-height:1.2;
    }
    
    .doc-arrow i{
        font-size:.82rem;
        color:#1e5aa8;
        opacity:.65;
    }
    @media(max-width:1200px){
        .doc-grid{
            grid-template-columns:repeat(3, 1fr);
        }
    }
    
    @media(max-width:768px){
        .doc-grid{
            grid-template-columns:repeat(2, 1fr);
        }
    }
    
    @media(max-width:480px){
        .doc-grid{
            grid-template-columns:1fr;
        }
    }

    
    /* ══════════════════════════════════════════
       Photo
    ══════════════════════════════════════════ */
        .pastor-photo-wrap{
            position:relative;
            width:150px;
            height:150px;
            margin:0 auto 1rem;
        }
        
        .photo-loader{
            position:absolute;
            inset:0;
        
            border-radius:50%;
        
            background:
                linear-gradient(
                    90deg,
                    #e5e7eb 25%,
                    #f3f4f6 50%,
                    #e5e7eb 75%
                );
        
            background-size:200% 100%;
        
            animation:skeletonLoading 1.2s infinite;
        }
        
        .pastor-photo{
            width:150px;
            height:150px;
            object-fit:cover;
        
            position:relative;
            z-index:2;
        
            opacity:0;
            transition:opacity .35s ease;
        }
        
        .pastor-photo.loaded{
            opacity:1;
        }
        
        @keyframes skeletonLoading{
            0%{
                background-position:200% 0;
            }
            100%{
                background-position:-200% 0;
            }
        }


    /* ══════════════════════════════════════════
       5. MOBILE CAROUSEL
    ══════════════════════════════════════════ */

    .carousel-section {
      display: block;
      padding: 120px 0; background: var(--surface);
      border-top: 0px;
      overflow: hidden;
    }
    .carousel-header { text-align: center; margin-bottom: 0; }
    .carousel-header .section-sub { margin: 16px auto 0; text-align: center; }

    .carousel-stage {
      position: relative;
      height: clamp(480px, 52vw, 780px);
      perspective: clamp(900px, 120vw, 1800px);
      perspective-origin: center center;
      display: flex; align-items: center; justify-content: center;
    }
    .carousel-track {
      position: relative; width: 100%; height: 100%;
      transform-style: preserve-3d;
      display: flex; align-items: center; justify-content: center;
    }

    /* Single source of truth: --pw = phone width, drives all offsets */
    :root {
      --pw: clamp(180px, 14vw, 300px);
      --gap1: clamp(200px, 19vw, 380px);
      --gap2: clamp(360px, 34vw, 660px);
      --gap-hide: clamp(500px, 48vw, 900px);
    }

    .phone-card {
      position: absolute;
      transition: transform 0.6s var(--silk), opacity 0.6s var(--silk);
      cursor: pointer;
    }
    .phone-shell {
      background: #C8D4D2;
      border-radius: 32px;
      padding: 5px;
      border: none;
      box-shadow:
        0 0 0 1px rgba(150,175,170,0.5),
        0 24px 56px rgba(13,30,28,0.18),
        inset 0 1px 0 rgba(255,255,255,0.6);
      position: relative;
      transition: box-shadow 0.6s var(--silk);
    }
    .phone-screen {
      background: var(--bg);
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 9/19.5;
    }
    .phone-screen-inner {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
    }
    .ps-topbar {
      padding: 10px 12px 6px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .ps-topbar-label { font-size: 8px; font-weight: 700; color: var(--text-1); letter-spacing: -0.02em; }
    .ps-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); }
    .ps-hero-block { padding: 6px 12px 10px; }
    .ps-hero-title { font-size: 9px; font-weight: 700; color: var(--text-1); line-height: 1.3; margin-bottom: 4px; }
    .ps-hero-sub { font-size: 6.5px; color: var(--text-3); line-height: 1.4; }
    .ps-btn {
      display: inline-block; margin-top: 6px;
      background: var(--accent); color: #fff;
      font-size: 6px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
    }
    .ps-cards { padding: 6px 8px; display: flex; flex-direction: column; gap: 5px; }
    .ps-card {
      background: var(--surface-2); border-radius: 8px; padding: 8px 10px;
      border: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
    }
    .ps-card-icon {
      width: 22px; height: 22px; border-radius: 6px;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      flex-shrink: 0;
    }
    .ps-card-text { flex: 1; }
    .ps-card-title { height: 5px; background: var(--border); border-radius: 2px; width: 60%; margin-bottom: 4px; }
    .ps-card-sub { height: 4px; background: var(--bg-alt); border-radius: 2px; width: 80%; }
    .ps-card-val { font-size: 8px; font-weight: 700; color: var(--accent); }
    .ps-nav {
      margin-top: auto; padding: 6px 8px;
      display: flex; justify-content: space-around;
      border-top: 1px solid var(--border); background: var(--surface-2);
    }
    .ps-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .ps-nav-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--bg-alt); }
    .ps-nav-dot.active { background: var(--accent); }
    .ps-nav-label { font-size: 4.5px; color: var(--text-3); }
    .ps-nav-label.active { color: var(--accent); }

    /* Card positions — z-index only, transforms set entirely by JS */
    .phone-card[data-pos="center"]       { z-index: 10; }
    .phone-card[data-pos="left1"],
    .phone-card[data-pos="right1"]       { z-index: 8; }
    .phone-card[data-pos="left2"],
    .phone-card[data-pos="right2"]       { z-index: 6; }
    .phone-card[data-pos="hidden-left"],
    .phone-card[data-pos="hidden-right"] { z-index: 4; }

    /* Reflection floor line */
      position: absolute; bottom: 60px; left: 0; right: 0;
      height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    /* Controls */
    .carousel-controls {
      display: flex; align-items: center; justify-content: center; gap: 24px;
      width: 100%; margin-top: 48px;
    }
   
    .carousel-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid var(--accent-border);
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); cursor: pointer;
      transition: all 0.4s var(--silk);
    }
    .carousel-btn:hover {
      background: var(--accent); color: #fff;
      border-color: var(--accent);
      transform: scale(1.05);
    }
    .carousel-dots { display: flex; gap: 8px; align-items: center; }
    .carousel-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent-border); cursor: pointer;
      transition: all 0.4s var(--silk);
    }
    .carousel-dot.active {
      background: var(--accent); width: 24px; border-radius: 4px;
    }

    /* Zoom control */
    .carousel-zoom {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 30px 0 0;
    }
    .zoom-btn {
      width: 32px; height: 32px; border-radius: 50%;
      border: 1.5px solid var(--accent-border);
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); cursor: pointer; font-size: 16px; line-height: 1;
      transition: all 0.35s var(--silk);
      user-select: none;
    }
    .zoom-btn:hover:not(:disabled) {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }
    .zoom-btn:disabled { opacity: 0.28; cursor: not-allowed; }
    .zoom-pips { display: flex; gap: 5px; align-items: center; }
    .zoom-pip {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent-border);
      transition: background 0.3s var(--silk), transform 0.3s var(--silk);
      cursor: pointer;
    }
    .zoom-pip.active { background: var(--accent); transform: scale(1.4); }
    .zoom-label {
      font-size: 0.72rem; font-weight: 500; color: var(--text-3);
      letter-spacing: 0.06em; text-transform: uppercase; width: 36px; text-align: center;
    }

    /* ══════════════════════════════════════════
       6. STATS
    ══════════════════════════════════════════ */
    .stats-section { padding: 80px 0; border-top: 1px solid var(--border); }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat-card {
      padding: 40px 36px;
      border-right: 1px solid var(--border);
      transition: background var(--silk-dur) var(--silk);
    }
    .stat-card:last-child { border-right: none; }
    .stat-card:hover { background: var(--surface-2); }
    .stat-rule {
      width: 32px; height: 2px; background: var(--accent);
      border-radius: 2px; margin-bottom: 24px;
      transition: width 0.5s var(--silk);
    }
    .stat-card:hover .stat-rule { width: 56px; }
    .stat-value {
      font-size: clamp(2.4rem, 3.5vw, 3.6rem);
      font-weight: 700; letter-spacing: -0.05em;
      color: var(--text-1); line-height: 1; margin-bottom: 12px;
      display: flex; align-items: baseline; gap: 2px;
    }
    .stat-suffix { font-size: 55%; color: var(--accent); font-weight: 600; }
    .stat-label {
      font-size: 0.9rem; font-weight: 600;
      color: var(--text-1); margin-bottom: 6px;
    }
    .stat-sublabel { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }

    /* ══════════════════════════════════════════
       7. PRICING
    ══════════════════════════════════════════ */
    .link-section { padding: 100px 0; background: var(--bg); border-top: 1px solid var(--border); }
    .link-header { text-align: center; margin-bottom: 48px; }
    .link-header .section-sub { margin: 16px auto 0; text-align: center; }

   
    .toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--text-2); }
    .toggle-label.active { color: var(--accent); font-weight: 600; }
  

    .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .link-card {
      background: var(--surface-2); border-radius: var(--radius-lg);
      border: 1px solid var(--border); padding: 36px 32px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
      position: relative;
    }
    .link-card:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
    .link-card.featured {
      border-color: var(--accent); background: var(--text-1);
      box-shadow: 0 20px 60px rgba(26,122,110,0.25);
    }
    .link-card.featured:hover { transform: scale(1.025); box-shadow: 0 28px 80px rgba(26,122,110,0.35); }
    .link-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 100px;
      white-space: nowrap;
    }
    .link-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
    .link-card.featured .link-tier { color: rgba(255,255,255,0.5); }
    .link-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
    .link-annual-note {
      font-size: 0.78rem; color: var(--text-3); margin-bottom: 16px;
      min-height: 1.2em;
      transition: opacity 0.4s var(--silk);
    }
    .link-card.featured .link-annual-note { color: rgba(255,255,255,0.4); }
    .link-currency { font-size: 1.4rem; font-weight: 600; color: var(--text-2); margin-top: 6px; }
    .link-amount { font-size: 3.2rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text-1); line-height: 1; }
    .link-card.featured .link-currency,
    .link-card.featured .link-amount { color: #fff; }
    .link-period { font-size: 0.875rem; color: var(--text-3); }
    .link-card.featured .link-period { color: rgba(255,255,255,0.5); }
    .link-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; margin-bottom: 28px; }
    .link-card.featured .link-desc { color: rgba(255,255,255,0.65); }
    .link-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
    .link-card.featured .link-divider { background: rgba(255,255,255,0.1); }
    .link-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .link-feature {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.875rem; color: var(--text-2);
    }
    .link-card.featured .link-feature { color: rgba(255,255,255,0.8); }
    .link-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--accent); font-size: 10px; font-weight: 700;
      margin-top: 1px;
    }
    .link-card.featured .link-check {
      background: rgba(91,191,181,0.2); border-color: rgba(91,191,181,0.4); color: var(--accent-light);
    }
    .link-cta {
      display: block; text-align: center; font-size: 0.9rem; font-weight: 600;
      padding: 13px; border-radius: 100px;
      border: 1.5px solid var(--accent-border); color: var(--accent);
      transition: all 0.4s var(--silk);
    }
    .link-cta:hover { background: var(--accent-ghost); }
    .link-card.featured .link-cta {
      background: var(--accent); border-color: var(--accent); color: #fff;
      box-shadow: 0 6px 24px rgba(26,122,110,0.35);
    }
    
    .link-card.featured .link-cta:hover { background: var(--accent-mid); }
    .link-quote {
      font-size: 0.9375rem; line-height: 1.7; color: var(--text-2);
      margin-bottom: 24px; font-style: italic;
    }
     .link-author { display: flex; align-items: center; gap: 12px; }
     .author-avatar {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      border: 2px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.875rem; color: var(--accent);
      background: var(--accent-ghost);
    }
    .author-name { font-size: 0.875rem; font-weight: 600; color: var(--text-1); }
    .author-role { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }
   
    
    
    /*--------------------------------------------------------------
    # youtube
    --------------------------------------------------------------*/
    .youtube {
      padding: 80px 0;
      background: url("/images/cta-bg.jpg") no-repeat;
      background-position: center center;
      background-size: cover;
      position: relative;
    }
    
    .youtube::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(234,244,255,0.82);
    backdrop-filter: blur(2px);
    }
    
    .youtube .section-header {
      margin-bottom: 40px;
    }

    .youtube .youtube-item .youtube-img iframe{
    width:100%;
    max-width:1100px;
    height:520px;
    border:none;
    border-radius:8px;
}

    .youtube .youtube-item{
        max-width:1200px;
        margin:auto;
        text-align: center;
    }
    
    
    
 
    .youtube .youtube-item h3 {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 5px 0;
      color: var(--text-1);
      text-align: center;
      
    }
    
    .youtube .youtube-item h4 {
      font-size: 14px;
      color: var(--text-2);
      margin: 0 0 15px 0;
    }
    
    .youtube .youtube-item .quote-icon-left,
.youtube .youtube-item .quote-icon-right{
    color: var(--accent);
    font-size: 28px;
    opacity: 1;
}
    
.youtube .youtube-item p{
    font-style: italic;
    margin: 0 auto 15px auto;
    color: var(--text-2);
    text-align:center;
}
    
    .youtube .owl-nav, .youtube .owl-dots {
      margin-top: 5px;
      text-align: center;
    }
    
    .youtube .owl-dot {
      display: inline-block;
      margin: 0 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.4) !important;
    }
    
    .youtube .owl-dot.active {
      background-color: var(--accent) !important;
    }
    .youtube .youtube-desc{
    color: var(--text-2);
    font-size: 18px;
}
    
    
    
    
    @media (min-width: 1024px) {
      .youtube {
        background-attachment: fixed;
      }
    }
    
    @media (min-width: 992px) {
      .youtube .youtube-item p {
        width: 80%;
      }
    }

    
    @media (max-width:768px){

  .youtube .youtube-item iframe{
      height:220px;
  }

}
        
    /* ══════════════════════════════════════════
       9. INTEGRATIONS
    ══════════════════════════════════════════ */
    .integrations-section {
      padding: 100px 0; background: var(--surface);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .integrations-header { text-align: center; margin-bottom: 56px; }
    .integrations-header .section-sub { margin: 16px auto 0; text-align: center; }
    .integrations-grid {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center; max-width: 860px; margin: 0 auto;
    }
    .integration-tile {
      background: var(--surface-2); border-radius: 100px;
      border: 1px solid var(--border); padding: 10px 22px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk),
                  border-color 0.4s, color 0.4s, background 0.4s;
      cursor: default;
    }
    .integration-tile:hover {
      transform: translateY(-2px); box-shadow: var(--shadow-md);
      border-color: var(--accent-border); background: var(--accent-ghost);
    }
    .integration-name {
      font-size: 0.875rem; font-weight: 600; color: var(--text-2);
      white-space: nowrap; letter-spacing: -0.01em;
    }
    .integration-tile:hover .integration-name { color: var(--accent); }

    /* ══════════════════════════════════════════
       10. FAQ
    ══════════════════════════════════════════ */
    .faq-section { padding: 100px 0; }
    .faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
    .faq-sidebar { position: sticky; top: 100px; }
    .faq-sidebar .section-sub { margin-top: 16px; margin-bottom: 32px; }
    .faq-toggle-all {
      font-size: 0.875rem; font-weight: 600; color: var(--accent);
      display: flex; align-items: center; gap: 6px;
      transition: opacity 0.3s;
    }
    .faq-toggle-all:hover { opacity: 0.75; }

    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer; gap: 16px;
      font-size: 0.9375rem; font-weight: 600; color: var(--text-1);
      transition: color 0.3s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1.5px solid var(--accent-border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 16px; font-weight: 300;
      transition: transform 0.5s var(--silk), background 0.4s, color 0.4s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
    .faq-answer {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s var(--silk);
    }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer-inner {
      overflow: hidden;
      font-size: 0.9rem; line-height: 1.75; color: var(--text-2);
      padding-bottom: 0;
      transition: padding-bottom 0.5s var(--silk);
    }
    .faq-item.open .faq-answer-inner { padding-bottom: 20px; }

    /* ══════════════════════════════════════════
       11. CTA BANNER
    ══════════════════════════════════════════ */
    .cta-section { padding: 100px 0; }
    .cta-inner {
      background: var(--text-1);
      border-radius: var(--radius-lg);
      padding: 80px;
      display: flex; align-items: center; justify-content: space-between; gap: 48px;
      position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: '';
      position: absolute; top: -40%; right: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(91,191,181,0.15) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; max-width: 560px; }
    .cta-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent-light);
      border: 1px solid rgba(91,191,181,0.3);
      padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .cta-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      letter-spacing: -0.03em; line-height: 1.15; color: #fff; margin-bottom: 16px;
    }
    .cta-title em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--accent-light); }
    .cta-sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
    .cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
    .btn-cta-primary {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9375rem; font-weight: 600; color: #fff;
      background: var(--accent); padding: 16px 36px; border-radius: 100px;
      white-space: nowrap;
      transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk);
      box-shadow: 0 8px 32px rgba(26,122,110,0.40);
    }
    .btn-cta-primary:hover { background: var(--accent-mid); transform: scale(1.02); }
    .btn-cta-ghost {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6);
      padding: 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

    /* ══════════════════════════════════════════
       12. FOOTER
    ══════════════════════════════════════════ */
    
        .footer{
            background:var(--text-1);
            padding:80px 0 40px;
            border-top:1px solid rgba(255,255,255,0.06);
        }
        
        .footer-brand{
            text-align:center;
            width:100%;
        }
        
        .footer-brand .nav-logo{
            display:block;
            font-size:2rem;
            font-weight:700;
            margin-bottom:18px;
            color:#ffffff;
            text-decoration:none;
            font-family:"Playfair Display", Georgia, serif;
        }
        
        .footer-brand-desc{
            font-size:1rem;
            line-height:1.8;
        
            color:rgba(255,255,255,0.72);
        
            max-width:720px;
        
            margin:0 auto 32px auto;
        }
        
        .footer-bottom{
            border-top:1px solid rgba(255,255,255,0.08);
            padding-top:24px;
            text-align:center;
        }
        
        .footer-copy{
            color:rgba(255,255,255,0.55);
            font-size:.92rem;
        }


    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { max-width: 520px; margin: 0 auto; }
      .warta-row { grid-template-columns: 1fr; gap: 40px; }
      .warta-row.reverse { direction: ltr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-card:last-child { border-bottom: none; }
      .link-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-inner { flex-direction: column; padding: 56px 40px; }
      .faq-inner { grid-template-columns: 1fr; }
      .faq-sidebar { position: static; }
      .hero-content{
            margin-bottom:40px;
        }
    
        .vision-mission{
            padding-left:0;
        }
    
        .section-header{
            justify-content:center;
        }
    
        .vision-text{
            text-align:center;
        }
        .nav-logo span{
        font-size:1.1rem;
    }

    .nav-logo img{
        height:36px !important;
    }
    }
    @media (max-width: 768px) {
      .carousel-zoom { padding: 30px 0 0; }
      .container { padding: 0 20px; }
      .nav-links, .nav-cta { display: none; }
       .nav-inner{
        padding:0 20px;
    }
      .nav-logo img{
        height:40px !important;
        }
    .nav-logo{
            gap:12px;
        }
      .nav-hamburger { display: flex; margin-left:30px;}
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card.tall { grid-row: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 40px 24px; }
      .link-grid { max-width: 100%; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-float-badge-2 { right: 0; }
      /* Carousel mobile */
      .carousel-stage { height: 400px; }
      :root {
        --pw: 150px;
        --gap1: 168px;
        --gap2: 300px;
        --gap-hide: 430px;
      }
      .phone-card[data-pos="left2"],
      .phone-card[data-pos="right2"] { opacity: 0.35; }
    }
    @media (max-width: 480px) {

      .stats-grid { grid-template-columns: 1fr 1fr; }
      .hero-trust { gap: 12px; }
      .trust-divider { display: none; }
    }
