/* ================================================
   Albab Store - Jasa Pembuatan Website
   Design: Modern, Professional, Trust-Building
   Color palette: Navy + Vibrant Blue + White
   ================================================ */

:root {
    --navy-950: #050e1f;
    --navy-900: #0a1628;
    --navy-800: #0f2340;
    --navy-700: #16305a;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-100: #dbeafe;
    --blue-50:  #eff6ff;
    --green-500:#22c55e;
    --wa:       #25d366;
    --wa-dark:  #128c7e;
    --gray-900: #0f172a;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50:  #f8fafc;
    --white:    #ffffff;
    --radius:   14px;
    --radius-lg:20px;
    --shadow-sm:0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md:0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg:0 20px 40px -12px rgba(15, 23, 42, 0.18);
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-heading: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-500); }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--gray-900); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 15px;
    border: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s, background .2s;
    font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-500); color: #fff; box-shadow: 0 10px 20px -8px rgba(37,99,235,.5); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--gray-900); border: 1.5px solid var(--gray-300); }
.btn-outline-dark:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; box-shadow: 0 10px 20px -8px rgba(37,211,102,.5); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy-900);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    display: grid; place-items: center; color: #fff; font-size: 18px;
    box-shadow: 0 6px 14px -4px rgba(37,99,235,.6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: #fff; }
.brand-tagline { font-size: 11px; color: var(--gray-400); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
    padding: 8px 14px; border-radius: 8px; color: #cbd5e1; font-weight: 500; font-size: 14.5px;
    position: relative;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; }
.main-nav a.active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 2px; background: var(--blue-500); border-radius: 2px;
}

.nav-toggle {
    display: none; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    background:
      radial-gradient(1200px 500px at 85% 20%, rgba(37,99,235,.25), transparent 60%),
      radial-gradient(600px 400px at 10% 90%, rgba(30,64,175,.28), transparent 60%),
      linear-gradient(180deg, var(--navy-900), var(--navy-950));
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content:""; position:absolute; inset:0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .6; pointer-events: none;
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.hero h1 {
    font-size: clamp(34px, 4.4vw, 54px); color: #fff; margin: 0 0 20px; letter-spacing: -.02em;
}
.hero h1 .accent {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-desc { font-size: 17px; color: #cbd5e1; margin-bottom: 26px; max-width: 500px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; color: #dbeafe; font-size: 14.5px; }
.hero-badges i { color: var(--blue-400); font-size: 18px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Device mockups */
.hero-visual { position: relative; }
.mockup-laptop {
    background: #1e293b; border-radius: 14px 14px 6px 6px; padding: 12px 12px 16px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
    position: relative;
}
.mockup-laptop::after {
    content: ""; position: absolute; bottom: -12px; left: -8%; right: -8%;
    height: 14px; background: #0f172a; border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.mockup-screen {
    background: #fff; border-radius: 4px; overflow: hidden;
    aspect-ratio: 16/10; display: flex; flex-direction: column;
}
.mockup-hero {
    flex: 1;
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: #fff; padding: 18px; display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
}
.mockup-hero::before {
    content:""; position:absolute; inset:0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'><rect fill='%23064e3b' width='200' height='100'/><path fill='%23052e2b' d='M60 40 L100 20 L140 40 L140 80 L60 80 Z'/><rect fill='%23052e2b' x='70' y='45' width='60' height='35'/><circle fill='%23fbbf24' cx='100' cy='40' r='4'/></svg>") center/cover;
    opacity: .35;
}
.mockup-hero h4 { color: #fff; margin: 0; font-size: 13px; font-weight: 800; position: relative; }
.mockup-hero p { color: rgba(255,255,255,.75); font-size: 8px; margin: 4px 0 0; position: relative; max-width: 60%; }
.mockup-hero .mini-btn { background: var(--green-500); color: #fff; font-size: 7px; padding: 3px 8px; border-radius: 3px; display: inline-block; margin-top: 8px; position: relative; width: fit-content; font-weight: 600; }
.mockup-programs {
    padding: 10px 14px 14px; background: #fff;
}
.mockup-programs h5 { text-align:center; font-size: 8px; margin: 0 0 8px; color: var(--gray-900); position: relative; padding-bottom: 4px; }
.mockup-programs h5::after { content:""; position:absolute; left:50%; bottom: 0; width: 20px; height: 2px; background: var(--blue-500); transform: translateX(-50%); border-radius: 2px; }
.mockup-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mockup-icons > div { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mockup-icons i { color: var(--blue-600); font-size: 10px; }
.mockup-icons span { font-size: 6px; color: var(--gray-600); }

.mockup-phone {
    position: absolute; right: -8%; bottom: -30px; width: 26%;
    background: #1e293b; border-radius: 18px; padding: 6px;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.mockup-phone .mockup-screen { aspect-ratio: 9/16; border-radius: 12px; }
.mockup-phone .mockup-hero { padding: 10px; }
.mockup-phone .mockup-hero h4 { font-size: 9px; }
.mockup-phone .mockup-hero p, .mockup-phone .mockup-hero .mini-btn { display: none; }
.mockup-phone .mockup-programs h5 { font-size: 6px; }
.mockup-phone .mockup-icons { grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mockup-phone .mockup-icons i { font-size: 8px; }
.mockup-phone .mockup-icons span { font-size: 5px; }

/* ---------- Section titles ---------- */
.section { padding: 80px 0; }
.section-title {
    text-align: center; margin-bottom: 50px;
}
.section-title h2 {
    font-size: clamp(26px, 3vw, 36px); position: relative; display: inline-block; padding-bottom: 12px;
}
.section-title h2::after {
    content:""; position: absolute; left: 50%; bottom: 0; width: 60px; height: 3px;
    background: var(--blue-600); border-radius: 3px; transform: translateX(-50%);
}
.section-title p { color: var(--gray-500); max-width: 640px; margin: 6px auto 0; }

/* ---------- Services ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 30px 24px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
    width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px;
    display: grid; place-items: center; font-size: 26px; color: #fff;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,.2);
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-500); margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.portfolio-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-preview {
    aspect-ratio: 16/10; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px; color: #fff;
}
.portfolio-preview::before {
    content:""; position:absolute; inset:0;
    background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 14px 14px; opacity: .3;
}
.portfolio-preview::after {
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.5));
}
.portfolio-preview > * { position: relative; z-index: 2; }
.portfolio-preview h4 { color: #fff; font-size: 20px; margin: 0 0 4px; letter-spacing: -.01em; }
.portfolio-preview span { font-size: 12px; color: rgba(255,255,255,.8); }
.portfolio-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: rgba(255,255,255,.9); color: var(--gray-900); font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; letter-spacing: .04em;
}
.portfolio-body { padding: 16px 20px 20px; }
.portfolio-body h5 { font-size: 15px; margin-bottom: 6px; color: var(--gray-900); font-family: var(--font-body); }
.portfolio-tag {
    display: inline-block; font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
.tag-blue { background: var(--blue-50); color: var(--blue-600); }
.tag-sky { background: #e0f2fe; color: #0369a1; }
.tag-amber { background: #fef3c7; color: #b45309; }
.tag-gray { background: var(--gray-100); color: var(--gray-700); }
.tag-violet { background: #ede9fe; color: #6d28d9; }
.tag-rose { background: #ffe4e6; color: #be123c; }

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    align-items: stretch;
}
.pricing-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 28px 24px 24px; display: flex; flex-direction: column;
    position: relative; transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
    border-color: var(--blue-600); box-shadow: 0 20px 40px -12px rgba(37,99,235,.25);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue-600); color: #fff; font-size: 11px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px; letter-spacing: .06em;
}
.pricing-card.dark {
    background: var(--navy-900); color: #cbd5e1; border-color: var(--navy-900);
}
.pricing-card.dark h3, .pricing-card.dark .pricing-price { color: #fff; }
.pricing-name {
    text-align: center; font-family: var(--font-heading); font-weight: 800; font-size: 16px;
    letter-spacing: .15em; color: var(--gray-500); margin-bottom: 10px;
}
.pricing-card.dark .pricing-name { color: var(--gray-400); }
.pricing-price { text-align: center; color: var(--gray-900); margin-bottom: 20px; }
.pricing-price small { display: block; font-size: 12px; color: var(--gray-500); font-weight: 500; margin-bottom: 2px; }
.pricing-price strong { font-family: var(--font-heading); font-size: 26px; font-weight: 800; letter-spacing: -.01em; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-features li {
    display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--gray-700);
}
.pricing-features li i { color: var(--green-500); font-size: 12px; margin-top: 6px; flex-shrink: 0; }
.pricing-card.dark .pricing-features li { color: #cbd5e1; }
.pricing-note {
    text-align: center; font-size: 12px; color: var(--gray-500); margin-bottom: 14px;
}
.pricing-card.dark .pricing-note { color: var(--gray-400); }
.pricing-custom-box {
    background: rgba(255,255,255,.05); border-radius: 12px; padding: 22px 16px; text-align: center; margin-bottom: 20px; flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.pricing-custom-box i { font-size: 34px; color: var(--blue-400); }
.pricing-custom-box p { font-size: 13.5px; color: #cbd5e1; margin: 0; }
.pricing-disclaimer { text-align: center; color: var(--gray-500); font-size: 12.5px; margin-top: 20px; }

/* Domain hosting */
.hosting-wrap { max-width: 640px; margin: 0 auto; }
.hosting-lead { text-align: center; color: var(--gray-500); margin-bottom: 24px; }
.hosting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hosting-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px; }
.hosting-card i.head { font-size: 20px; color: var(--blue-600); margin-bottom: 12px; display: block; }
.hosting-card h4 { font-size: 16px; margin-bottom: 4px; }
.hosting-card .small { color: var(--gray-500); font-size: 12.5px; }
.hosting-card .price { font-family: var(--font-heading); font-weight: 800; color: var(--gray-900); margin: 8px 0; font-size: 20px; }
.hosting-card .price small { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.hosting-tld { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 13px; color: var(--gray-600); margin-top: 8px; }
.hosting-tld span { display: inline-flex; align-items: center; gap: 4px; }
.hosting-info {
    background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 12px;
    padding: 16px 18px; margin-top: 20px; display: flex; gap: 12px; align-items: flex-start;
}
.hosting-info i { color: var(--blue-600); font-size: 20px; margin-top: 2px; }
.hosting-info p { margin: 0; font-size: 13.5px; color: var(--gray-700); }

/* ---------- Process Steps ---------- */
.steps {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: start;
    position: relative;
}
.step { text-align: center; position: relative; }
.step-icon {
    width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
    background: var(--blue-600); color: #fff; display: grid; place-items: center; font-size: 26px;
    box-shadow: 0 12px 24px -8px rgba(37,99,235,.5); position: relative; z-index: 2;
}
.step-arrow {
    position: absolute; top: 30px; right: -12px; color: var(--blue-500); font-size: 16px; z-index: 1;
}
.step:last-child .step-arrow { display: none; }
.step h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); }
.step p { font-size: 13px; color: var(--gray-500); margin: 0; }

/* ---------- CTA Band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: #fff; padding: 40px 0; position: relative; overflow: hidden;
}
.cta-band::before {
    content:""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 20px 20px; opacity: .5;
}
.cta-inner { display: flex; align-items: center; gap: 24px; position: relative; z-index: 2; }
.cta-illus {
    width: 74px; height: 74px; border-radius: 14px; background: rgba(59,130,246,.15);
    display: grid; place-items: center; color: var(--blue-400); font-size: 30px; flex-shrink: 0;
}
.cta-text { flex: 1; }
.cta-text h3 { color: #fff; font-size: 20px; margin: 0 0 4px; }
.cta-text p { color: #cbd5e1; margin: 0; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy-950); color: #cbd5e1; padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.1fr 1.3fr; gap: 30px;
    padding-bottom: 40px;
}
.footer-brand p { font-size: 13.5px; color: var(--gray-400); margin: 14px 0 16px; }
.footer-grid h5 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: 4px 0; font-size: 13.5px; }
.footer-grid ul a { color: #94a3b8; }
.footer-grid ul a:hover { color: #fff; }
.contact-list li { display: flex; align-items: center; gap: 10px; color: #94a3b8; }
.contact-list i { color: var(--blue-400); width: 16px; text-align: center; }
.social { display: flex; gap: 10px; }
.social a {
    width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06);
    display: grid; place-items: center; color: #cbd5e1;
}
.social a:hover { background: var(--blue-600); color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: var(--gray-400);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
    background: var(--wa); color: #fff; font-size: 28px; display: grid; place-items: center;
    box-shadow: 0 12px 30px -6px rgba(37,211,102,.6); z-index: 90;
    animation: pulse 2s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.05); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 30px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); }
    50% { box-shadow: 0 12px 30px -6px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0); }
}

/* ---------- Generic Page ---------- */
.page-hero {
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
    color: #fff; padding: 80px 0 60px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.page-hero p { color: #cbd5e1; max-width: 620px; margin: 0 auto; }
.page-hero .crumb { color: var(--blue-400); font-size: 13px; margin-bottom: 8px; letter-spacing: .1em; }

/* Form */
.form-card {
    max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 10px;
    font-family: inherit; font-size: 14.5px; color: var(--gray-900); background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.about-grid h2 { font-size: 32px; margin-bottom: 16px; }
.about-grid p { color: var(--gray-600); margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.about-stat { text-align: center; padding: 20px; background: var(--gray-50); border-radius: 12px; }
.about-stat strong { display: block; font-family: var(--font-heading); font-size: 28px; color: var(--blue-600); }
.about-stat span { font-size: 13px; color: var(--gray-500); }
.about-visual {
    aspect-ratio: 4/5; border-radius: var(--radius-lg);
    background:
      linear-gradient(135deg, rgba(37,99,235,.15), rgba(59,130,246,.05)),
      var(--navy-800);
    display: grid; place-items: center; color: var(--blue-400); font-size: 100px;
    box-shadow: var(--shadow-lg);
}

/* Values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.value {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px;
    text-align: center;
}
.value i { font-size: 26px; color: var(--blue-600); margin-bottom: 10px; }
.value h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); }
.value p { font-size: 13px; color: var(--gray-500); margin: 0; }

/* Alert */
.alert {
    padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px;
    display: flex; align-items: center; gap: 10px;
}
.alert.success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Katalog category headings */
.category-block { margin-bottom: 50px; }
.category-block h3 {
    font-size: 22px; margin-bottom: 20px; padding-left: 14px; border-left: 4px solid var(--blue-600);
}

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 20px 22px; margin-bottom: 12px;
}
.faq-item h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); display: flex; gap: 10px; align-items: center; }
.faq-item h4 i { color: var(--blue-600); }
.faq-item p { font-size: 14px; color: var(--gray-600); margin: 0 0 0 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .step-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values { grid-template-columns: repeat(2, 1fr); }
    .main-nav { display: none; }
    .nav-toggle { display: block; }
    .header-inner .btn-wa { display: none; }
    .site-header.menu-open .main-nav {
        display: flex; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: var(--navy-800); padding: 12px;
    }
    .mockup-phone { right: -4%; width: 30%; }
}
@media (max-width: 620px) {
    .services-grid, .portfolio-grid, .pricing-grid, .hosting-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 60px 0 80px; }
    .section { padding: 60px 0; }
    .values { grid-template-columns: 1fr; }
}
