/* ============================================================
   Carpet Cleaning Landing — styles
   ============================================================ */

/* === TOKENS === */
.ccl-landing {
  --blue:       #1a6cf5;
  --blue-dark:  #1254cc;
  --blue-light: #e8f0fe;
  --teal:       #0eb5a2;
  --teal-light: #e4f7f5;

  --white:      #ffffff;
  --bg:         #f8f9fc;
  --bg-warm:    #f4f6fb;
  --surface:    #ffffff;

  --text:       #111827;
  --text-2:     #374151;
  --text-3:     #6b7280;
  --border:     #e5e7eb;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow:    0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 32px rgba(26,108,245,.22);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max: 1200px;
  --gap: 80px;
}

/* === RESET (scoped) === */
.ccl-landing *,
.ccl-landing *::before,
.ccl-landing *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ccl-landing { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.ccl-landing img { max-width: 100%; display: block; }
.ccl-landing a { color: inherit; text-decoration: none; }
.ccl-landing ul { list-style: none; }
.ccl-landing button,
.ccl-landing input,
.ccl-landing select,
.ccl-landing textarea { font: inherit; }
.ccl-landing html { scroll-behavior: smooth; }

/* === UTILS === */
.ccl-landing .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ccl-landing .section { padding: var(--gap) 0; }
.ccl-landing .section-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.ccl-landing .section-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.ccl-landing .section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
.ccl-landing .section-sub { font-size: 1.1rem; color: var(--text-3); max-width: 600px; margin-top: 14px; font-weight: 400; }

/* === BUTTONS === */
.ccl-landing .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; border-radius: 999px; padding: 14px 32px; cursor: pointer; border: none; transition: all .22s cubic-bezier(.4,0,.2,1); }
.ccl-landing .btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.ccl-landing .btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26,108,245,.32); }
.ccl-landing .btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.ccl-landing .btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.ccl-landing .btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 28px rgba(14,181,162,.25); }
.ccl-landing .btn-teal:hover { background: #0da494; transform: translateY(-2px); }
.ccl-landing .btn-lg { font-size: 1.1rem; padding: 17px 40px; }

/* === NAV === */
.ccl-landing .ccl-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.ccl-landing .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.ccl-landing .nav-logo { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; color: var(--text); line-height: 1.2; display: inline-flex; align-items: center; gap: 12px; }
.ccl-landing .nav-logo > span { color: var(--blue); }
.ccl-landing .nav-logo-img { display: block; height: 40px; width: auto; flex-shrink: 0; }
.ccl-landing .nav-logo-text { font-size: 1rem; line-height: 1.2; }
.ccl-landing .nav-logo-text span { color: var(--blue); }
.ccl-landing .footer-logo-img { display: block; height: 40px; width: auto; margin-bottom: 12px; }
.ccl-landing .nav-links { display: flex; align-items: center; gap: 32px; }
.ccl-landing .nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--text-2); transition: color .2s; }
.ccl-landing .nav-links a:hover { color: var(--blue); }
.ccl-landing .nav-cta { display: flex; align-items: center; gap: 12px; }
.ccl-landing .nav-phone { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }
.ccl-landing .nav-phone:hover { color: var(--blue-dark); }
.ccl-landing .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.ccl-landing .nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 3px; transition: .3s; }

/* === HERO === */
.ccl-landing .hero { background: linear-gradient(150deg,#f0f4ff 0%,#ffffff 50%,#f0fbf9 100%); padding: 96px 0 80px; overflow: hidden; position: relative; }
.ccl-landing .hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,108,245,.07) 0%, transparent 70%); pointer-events: none; }
.ccl-landing .hero::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14,181,162,.07) 0%, transparent 70%); pointer-events: none; }
.ccl-landing .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ccl-landing .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 999px; padding: 7px 16px; font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--text-2); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.ccl-landing .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: cclPulse 2s infinite; }
@keyframes cclPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .7; } }
.ccl-landing .hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--text); }
.ccl-landing .hero h1 .accent { color: var(--blue); }
.ccl-landing .hero-sub { font-size: 1.15rem; color: var(--text-3); margin-top: 20px; font-weight: 400; max-width: 480px; line-height: 1.65; }
.ccl-landing .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.ccl-landing .hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.ccl-landing .hero-trust-item { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-size: .85rem; font-weight: 600; color: var(--text-3); }
.ccl-landing .hero-trust-item svg { color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; }
.ccl-landing .hero-visual { position: relative; }
.ccl-landing .hero-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--bg); position: relative; }
.ccl-landing .hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.ccl-landing .hero-img-badge { position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.ccl-landing .hero-img-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.ccl-landing .hero-img-badge-text strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--text); }
.ccl-landing .hero-img-badge-text span { font-size: .8rem; color: var(--text-3); }
.ccl-landing .hero-img-float { position: absolute; top: -16px; right: -16px; width: 140px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 4px solid #fff; aspect-ratio: 1; background: var(--bg); }
.ccl-landing .hero-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* === PHOTO PLACEHOLDER === */
.ccl-landing .photo-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--bg-warm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-3); font-family: var(--font-head); font-size: .8rem; font-weight: 600; border: 2px dashed var(--border); }
.ccl-landing .photo-placeholder svg { width: 32px; height: 32px; opacity: .4; }
.ccl-landing .photo-placeholder.horizontal { aspect-ratio: 16/9; }
.ccl-landing .photo-placeholder.vertical { aspect-ratio: 3/4; }
.ccl-landing .photo-placeholder.square { aspect-ratio: 1; }

/* === TRUST BAR === */
.ccl-landing .trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.ccl-landing .trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ccl-landing .trust-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 160px; }
.ccl-landing .trust-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.ccl-landing .trust-item-text strong { display: block; font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--text); }
.ccl-landing .trust-item-text span { font-size: .82rem; color: var(--text-3); }
.ccl-landing .trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* === SERVICES === */
.ccl-landing .services { background: var(--bg); }
.ccl-landing .services-header { text-align: center; margin-bottom: 48px; }
.ccl-landing .services-header .section-sub { margin: 14px auto 0; }
.ccl-landing .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ccl-landing .service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1.5px solid var(--border); transition: all .25s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.ccl-landing .service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%); opacity: 0; transition: .25s; }
.ccl-landing .service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.ccl-landing .service-card:hover::before { opacity: 1; }
.ccl-landing .service-card:hover .sc-icon { background: rgba(255,255,255,.2); color: #fff; }
.ccl-landing .service-card:hover .sc-title { color: #fff; }
.ccl-landing .service-card:hover .sc-desc { color: rgba(255,255,255,.85); }
.ccl-landing .service-card:hover .sc-list li { color: rgba(255,255,255,.8); }
.ccl-landing .service-card:hover .sc-list li::before { background: #fff; }
.ccl-landing .service-card:hover .sc-link { color: #fff; border-color: rgba(255,255,255,.4); }
.ccl-landing .sc-inner { position: relative; z-index: 1; }
.ccl-landing .sc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 20px; transition: .25s; }
.ccl-landing .sc-icon svg { width: 26px; height: 26px; }
.ccl-landing .sc-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 10px; transition: .25s; }
.ccl-landing .sc-title-lg { font-size: 1.4rem; }
.ccl-landing .sc-desc { font-size: .9rem; color: var(--text-3); line-height: 1.65; transition: .25s; }
.ccl-landing .sc-list { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.ccl-landing .sc-list li { font-size: .85rem; color: var(--text-3); display: flex; align-items: center; gap: 8px; transition: .25s; list-style: none; }
.ccl-landing .sc-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; transition: .25s; }
.ccl-landing .sc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--blue); border-bottom: 1.5px solid var(--blue-light); padding-bottom: 2px; transition: .25s; }

/* CTA card variant inside services */
.ccl-landing .service-card-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%); border-color: transparent; }
.ccl-landing .service-card-cta .sc-icon { background: rgba(255,255,255,.2); color: #fff; }
.ccl-landing .service-card-cta .sc-title { color: #fff; }
.ccl-landing .service-card-cta .sc-desc { color: rgba(255,255,255,.85); }
.ccl-landing .btn-cta-white { background: #fff; color: var(--blue); margin-top: 28px; font-size: .95rem; font-weight: 800; }

/* === WHY US === */
.ccl-landing .why { background: var(--white); }
.ccl-landing .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ccl-landing .why-media { position: relative; }
.ccl-landing .why-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--bg); box-shadow: var(--shadow-lg); }
.ccl-landing .why-img img { width: 100%; height: 100%; object-fit: cover; }
.ccl-landing .why-stat { position: absolute; top: 24px; right: -20px; background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); text-align: center; }
.ccl-landing .why-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.ccl-landing .why-stat span { font-size: .8rem; color: var(--text-3); font-weight: 500; }
.ccl-landing .why-stat-2 { position: absolute; bottom: 24px; left: -20px; background: var(--teal); border-radius: var(--radius); padding: 16px 20px; box-shadow: 0 8px 28px rgba(14,181,162,.3); color: #fff; }
.ccl-landing .why-stat-2 strong { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.ccl-landing .why-stat-2 span { font-size: .78rem; opacity: .85; }
.ccl-landing .why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.ccl-landing .why-feat { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); transition: .2s; }
.ccl-landing .why-feat:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.ccl-landing .why-feat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.ccl-landing .why-feat-text strong { display: block; font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ccl-landing .why-feat-text span { font-size: .87rem; color: var(--text-3); }

/* === GALLERY === */
.ccl-landing .gallery { background: var(--bg); }
.ccl-landing .gallery-header { text-align: center; margin-bottom: 48px; }
.ccl-landing .gallery-header .section-sub { margin: 14px auto 0; }
.ccl-landing .gallery-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.ccl-landing .gallery-tab { font-family: var(--font-head); font-size: .85rem; font-weight: 700; padding: 8px 20px; border-radius: 999px; border: 2px solid var(--border); background: #fff; color: var(--text-3); cursor: pointer; transition: .2s; }
.ccl-landing .gallery-tab.active,
.ccl-landing .gallery-tab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.ccl-landing .ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ccl-landing .ba-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); }
.ccl-landing .ba-pair { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.ccl-landing .ba-half { position: relative; }
.ccl-landing .ba-half img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.ccl-landing .ba-label { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.65); color: #fff; font-family: var(--font-head); font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.ccl-landing .ba-divider { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: #fff; z-index: 2; }
.ccl-landing .ba-divider-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 28px; height: 28px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; z-index: 3; color: var(--blue); }
.ccl-landing .ba-info { padding: 16px 18px; }
.ccl-landing .ba-info strong { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--text); }
.ccl-landing .ba-info span { display: block; font-size: .8rem; color: var(--text-3); margin-top: 3px; }
.ccl-landing .gallery-singles-label { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.ccl-landing .gallery-singles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.ccl-landing .gallery-single { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ccl-landing .gallery-single img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* === HOW IT WORKS === */
.ccl-landing .how { background: linear-gradient(135deg,#f0f4ff 0%,#f4f6fb 100%); }
.ccl-landing .how-header { text-align: center; margin-bottom: 56px; }
.ccl-landing .how-header .section-sub { margin: 14px auto 0; }
.ccl-landing .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.ccl-landing .how-steps::before { content: ''; position: absolute; top: 36px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); z-index: 0; }
.ccl-landing .how-step { text-align: center; position: relative; z-index: 1; }
.ccl-landing .how-step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 3px solid var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--blue); box-shadow: var(--shadow-blue); }
.ccl-landing .how-step:nth-child(2) .how-step-num { background: var(--blue); color: #fff; }
.ccl-landing .how-step:nth-child(3) .how-step-num { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 8px 28px rgba(14,181,162,.25); }
.ccl-landing .how-step-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.ccl-landing .how-step-desc { font-size: .9rem; color: var(--text-3); line-height: 1.65; max-width: 240px; margin: 0 auto; }
.ccl-landing .how-cta { text-align: center; margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === REVIEWS === */
.ccl-landing .reviews { background: var(--white); }
.ccl-landing .reviews-header { text-align: center; margin-bottom: 48px; }
.ccl-landing .reviews-header .section-sub { margin: 14px auto 0; }
.ccl-landing .reviews-score { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.ccl-landing .reviews-big-score { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--text); line-height: 1; }
.ccl-landing .reviews-stars { display: flex; gap: 4px; }
.ccl-landing .reviews-stars svg { width: 24px; height: 24px; color: #f59e0b; }
.ccl-landing .reviews-total { font-size: .9rem; color: var(--text-3); }
.ccl-landing .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ccl-landing .review-card { background: var(--bg); border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); transition: .2s; }
.ccl-landing .review-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.ccl-landing .review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.ccl-landing .review-stars svg { width: 16px; height: 16px; color: #f59e0b; }
.ccl-landing .review-text { font-size: .95rem; color: var(--text-2); line-height: 1.7; font-style: italic; }
.ccl-landing .review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.ccl-landing .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--blue); flex-shrink: 0; }
.ccl-landing .review-name strong { display: block; font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--text); }
.ccl-landing .review-name span { font-size: .8rem; color: var(--text-3); }
.ccl-landing .review-platform { margin-left: auto; font-size: .75rem; color: var(--text-3); font-family: var(--font-head); font-weight: 600; }

/* === FAQ === */
.ccl-landing .faq { background: var(--bg); }
.ccl-landing .faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.ccl-landing .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.ccl-landing .faq-item { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: .2s; }
.ccl-landing .faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.ccl-landing .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--text); }
.ccl-landing .faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s; }
.ccl-landing .faq-item.open .faq-icon { transform: rotate(180deg); background: var(--blue); color: #fff; }
.ccl-landing .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.ccl-landing .faq-item.open .faq-a { max-height: 500px; }
.ccl-landing .faq-a p { padding: 0 22px 20px; font-size: .9rem; color: var(--text-3); line-height: 1.7; }
.ccl-landing .faq-cta-box { background: linear-gradient(135deg, var(--blue) 0%, #1254cc 100%); border-radius: var(--radius-lg); padding: 48px 40px; color: #fff; }
.ccl-landing .faq-cta-box h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.ccl-landing .faq-cta-box p { font-size: .95rem; opacity: .85; margin-bottom: 28px; line-height: 1.65; }
.ccl-landing .faq-cta-tag { background: rgba(255,255,255,.15) !important; color: #fff !important; margin-bottom: 24px; }
.ccl-landing .btn-faq-cta { background: #fff; color: var(--blue); font-weight: 800; }
.ccl-landing .btn-faq-cta:hover { background: #f0f4ff; transform: translateY(-2px); }
.ccl-landing .faq-cta-phone { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; opacity: .9; }
.ccl-landing .faq-cta-or { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.ccl-landing .faq-cta-or p { font-size: .85rem; opacity: .75; margin-bottom: 12px; }
.ccl-landing .btn-faq-outline { border-color: rgba(255,255,255,.4); color: #fff; font-size: .9rem; }
.ccl-landing .btn-faq-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* === QUOTE FORM === */
.ccl-landing .quote-form-section { background: var(--white); }
.ccl-landing .quote-form-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.ccl-landing .quote-info .section-sub { margin-top: 14px; }
.ccl-landing .quote-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.ccl-landing .quote-benefit { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--text-2); }
.ccl-landing .quote-benefit svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.ccl-landing .quote-call-box { margin-top: 36px; padding: 24px; background: var(--bg); border-radius: var(--radius); border: 1.5px solid var(--border); }
.ccl-landing .quote-call-label { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.ccl-landing .quote-call-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--blue); display: flex; align-items: center; gap: 10px; }
.ccl-landing .quote-call-hours { font-size: .85rem; color: var(--text-3); margin-top: 6px; }
.ccl-landing .q-form { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; border: 1.5px solid var(--border); }
.ccl-landing .q-form h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.ccl-landing .q-form p { font-size: .88rem; color: var(--text-3); margin-bottom: 28px; }
.ccl-landing .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.ccl-landing .form-group label { font-family: var(--font-head); font-size: .83rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .04em; }
.ccl-landing .form-group input,
.ccl-landing .form-group select,
.ccl-landing .form-group textarea { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .95rem; color: var(--text); outline: none; transition: .2s; width: 100%; }
.ccl-landing .form-group input:focus,
.ccl-landing .form-group select:focus,
.ccl-landing .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,108,245,.1); }
.ccl-landing .form-group textarea { resize: vertical; min-height: 100px; }
.ccl-landing .form-submit { width: 100%; margin-top: 8px; font-size: 1rem; padding: 16px; border-radius: var(--radius); }
.ccl-landing .form-note { font-size: .8rem; color: var(--text-3); text-align: center; margin-top: 12px; }

/* CF7 — наследует наши стили формы */
.ccl-landing .q-form .wpcf7 input[type="text"],
.ccl-landing .q-form .wpcf7 input[type="tel"],
.ccl-landing .q-form .wpcf7 input[type="email"],
.ccl-landing .q-form .wpcf7 select,
.ccl-landing .q-form .wpcf7 textarea { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .95rem; color: var(--text); outline: none; width: 100%; margin-top: 6px; }
.ccl-landing .q-form .wpcf7 input[type="submit"],
.ccl-landing .q-form .wpcf7 button[type="submit"] { width: 100%; margin-top: 12px; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; border: none; padding: 16px; border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-blue); transition: .22s; }
.ccl-landing .q-form .wpcf7 input[type="submit"]:hover,
.ccl-landing .q-form .wpcf7 button[type="submit"]:hover { background: var(--blue-dark); transform: translateY(-2px); }
.ccl-landing .q-form .wpcf7 label { display: block; font-family: var(--font-head); font-size: .83rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }

/* === SERVICE AREA === */
.ccl-landing .area { background: var(--bg); }
.ccl-landing .area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ccl-landing .area-map { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.ccl-landing .area-map iframe { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }
.ccl-landing .area-map-placeholder { aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: linear-gradient(135deg,#e8f0fe 0%,#e4f7f5 100%); }
.ccl-landing .area-map-placeholder svg { width: 64px; height: 64px; color: var(--blue); opacity: .5; }
.ccl-landing .area-map-placeholder p { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--text-3); }
.ccl-landing .area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ccl-landing .area-city { background: #fff; border: 1.5px solid var(--border); border-radius: 999px; padding: 7px 16px; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.ccl-landing .area-city svg { width: 12px; height: 12px; color: var(--blue); }
.ccl-landing .area-note { margin-top: 20px; font-size: .9rem; color: var(--text-3); line-height: 1.65; }
.ccl-landing .area-call { margin-top: 24px; }

/* === FOOTER === */
.ccl-landing .ccl-footer { background: #0f172a; color: #fff; padding: 64px 0 0; }
.ccl-landing .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.ccl-landing .footer-brand-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: #fff; }
.ccl-landing .footer-brand-name span { color: var(--blue); }
.ccl-landing .footer-brand-desc { color: #94a3b8; font-size: .9rem; margin-top: 12px; line-height: 1.65; max-width: 280px; }
.ccl-landing .footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.ccl-landing .footer-contact a { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #94a3b8; transition: .2s; }
.ccl-landing .footer-contact a:hover { color: #fff; }
.ccl-landing .footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue); }
.ccl-landing .footer-col h4 { font-family: var(--font-head); font-size: .9rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.ccl-landing .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.ccl-landing .footer-col ul a { font-size: .88rem; color: #94a3b8; transition: .2s; }
.ccl-landing .footer-col ul a:hover { color: #fff; }
.ccl-landing .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ccl-landing .footer-bottom p { font-size: .82rem; color: #475569; }
.ccl-landing .footer-bottom-text { display: flex; flex-direction: column; gap: 4px; }
.ccl-landing .footer-credit a { color: var(--blue); font-weight: 600; }
.ccl-landing .footer-credit a:hover { text-decoration: underline; }
.ccl-landing .footer-call { padding: 10px 24px; font-size: .9rem; }

/* === STICKY MOBILE CTA === */
.ccl-landing .sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--border); padding: 12px 16px; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,.12); }
.ccl-landing .sticky-call a { flex: 1; text-align: center; padding: 14px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ccl-landing .sticky-call-phone { background: var(--blue); color: #fff; }
.ccl-landing .sticky-call-quote { background: var(--teal); color: #fff; }

/* === FLOAT QUOTE BTN === */
.ccl-landing .float-btn { position: fixed; bottom: 24px; right: 24px; z-index: 150; background: var(--blue); color: #fff; border-radius: 999px; padding: 14px 22px; font-family: var(--font-head); font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-blue); display: flex; align-items: center; gap: 8px; transition: .2s; }
.ccl-landing .float-btn:hover { background: var(--blue-dark); transform: translateY(-3px); }
.ccl-landing .float-btn svg { width: 16px; height: 16px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ccl-landing .hero-inner,
  .ccl-landing .why-inner,
  .ccl-landing .faq-inner,
  .ccl-landing .quote-form-inner,
  .ccl-landing .area-inner { grid-template-columns: 1fr; gap: 48px; }
  .ccl-landing .hero-visual { order: -1; }
  .ccl-landing .hero-img-float { display: none; }
  .ccl-landing .why-media { order: -1; }
  .ccl-landing .why-img { aspect-ratio: 16/9; }
  .ccl-landing .why-stat { top: 16px; right: 16px; }
  .ccl-landing .why-stat-2 { bottom: 16px; left: 16px; }
  .ccl-landing .services-grid,
  .ccl-landing .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ccl-landing .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .ccl-landing .gallery-singles { grid-template-columns: repeat(2, 1fr); }
  .ccl-landing .footer-grid { grid-template-columns: 1fr 1fr; }
  .ccl-landing .trust-divider { display: none; }
  .ccl-landing .how-steps::before { display: none; }
}
@media (max-width: 768px) {
  .ccl-landing { --gap: 60px; }
  .ccl-landing .nav-cta .btn { display: none; }
  .ccl-landing .nav-hamburger { display: flex; }

  /* Мобильное меню — выпадающая панель */
  .ccl-landing .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    z-index: 99;
  }
  .ccl-landing .ccl-nav.nav-open .nav-links { display: flex; }
  .ccl-landing .nav-links a {
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .ccl-landing .nav-links a:last-child { border-bottom: none; }

  /* Гамбургер -> крестик */
  .ccl-landing .nav-hamburger span { transition: transform .25s, opacity .2s; transform-origin: center; }
  .ccl-landing .ccl-nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .ccl-landing .ccl-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .ccl-landing .ccl-nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .ccl-landing .hero h1 { font-size: 2.2rem; }
  .ccl-landing .services-grid,
  .ccl-landing .reviews-grid,
  .ccl-landing .how-steps { grid-template-columns: 1fr; }
  .ccl-landing .ba-grid { grid-template-columns: 1fr; }
  .ccl-landing .gallery-singles { grid-template-columns: 1fr 1fr; }
  .ccl-landing .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ccl-landing .trust-item { width: 100%; }
  .ccl-landing .float-btn { display: none; }
  .ccl-landing .sticky-call { display: flex; }
  .ccl-landing { padding-bottom: 76px; }
  .ccl-landing .area-inner,
  .ccl-landing .footer-grid { grid-template-columns: 1fr; }
  .ccl-landing .footer-bottom { flex-direction: column; text-align: center; }
  .ccl-landing .q-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .ccl-landing .hero-ctas { flex-direction: column; }
  .ccl-landing .hero-ctas .btn { width: 100%; }
  .ccl-landing .hero-trust { gap: 12px; }
  .ccl-landing .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .ccl-landing .gallery-singles { grid-template-columns: 1fr; }
}
