*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--nav-bg:      #111111;
--body:        #333333;
--muted:       #757575;
--section-gray:#FAFAFA;
--footer-gray: #F5F5F5;
--white:       #FFFFFF;
--card-shadow: rgba(0,0,0,0.16) 0px 1px 5px 0px;
--font:        'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
--max-w:       1170px;
--col-blog:    680px;
--radius:      8px;
--radius-card: 12px;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font);
color: var(--body);
background: var(--white);
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
code {
background: #f5f5f5;
padding: 2px 8px;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 17px;
}
.page-content {
margin-top: 92px;
}
.inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 40px;
}
.bg-white { background: var(--white); }
.bg-gray  { background: var(--section-gray); }
.section        { padding: 96px 0; }
.section--hero  { padding: 80px 0 64px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.section--bar   { padding: 96px 0 80px; }
.hidden { display: none; }
.honeypot { display: none; }
.section-cat-label {
font-size: 13px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 12px;
}
.navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
background: var(--nav-bg);
height: 92px;
display: flex;
align-items: center;
justify-content: center;
}
.navbar-container {
width: 100%;
max-width: 1280px;
display: flex;
align-items: center;
padding: 0 40px;
}
.nav-logo {
display: flex;
align-items: center;
}
.nav-logo-icon {
width: 70px;
height: 70px;
border-radius: 50%;
object-fit: cover;
}
.nav-logo-text {
display: flex;
flex-direction: column;
margin-left: 6px;
}
.nav-logo-name {
color: #fff;
font-size: 20px;
font-weight: 700;
line-height: 1.2;
}
.nav-logo-title {
color: rgba(255,255,255,0.6);
font-size: 13px;
font-weight: 300;
line-height: 1.3;
letter-spacing: 1px;
}
.nav-links {
display: flex;
gap: 36px;
margin: 0 auto;
}
.nav-links a {
color: rgba(255,255,255,0.75);
font-size: 17px;
font-weight: 300;
text-transform: lowercase;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-social {
display: flex;
gap: 18px;
align-items: center;
}
.nav-social a {
color: rgba(255,255,255,0.7);
display: flex;
transition: color 0.2s, transform 0.2s;
}
.nav-social a:hover { color: #fff; transform: translateY(-1px); }
.nav-item-mega {
position: relative;
display: flex;
align-items: center;
}
.nav-mega-trigger {
display: flex;
align-items: center;
gap: 4px;
color: rgba(255,255,255,0.75);
font-size: 17px;
font-weight: 300;
text-transform: lowercase;
transition: color 0.2s;
cursor: pointer;
}
.nav-mega-trigger:hover,
.nav-mega-trigger.active { color: #fff; }
.nav-chevron {
transition: transform 0.2s ease;
opacity: 0.6;
}
.nav-item-mega:hover .nav-chevron {
transform: rotate(180deg);
opacity: 1;
}
.mega-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(10px);
opacity: 0;
visibility: hidden;
transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
padding-top: 20px;
z-index: 200;
}
.nav-item-mega:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
background: #1a1a1a;
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.4);
padding: 24px;
min-width: 520px;
}
.mega-menu-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.mega-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 14px 16px;
border-radius: 8px;
transition: background 0.2s ease;
}
.mega-item:hover {
background: rgba(255,255,255,0.06);
}
.mega-icon {
font-size: 24px;
line-height: 1;
flex-shrink: 0;
}
.mega-content {
display: flex;
flex-direction: column;
gap: 2px;
}
.mega-title {
color: #fff;
font-size: 15px;
font-weight: 600;
line-height: 1.3;
}
.mega-desc {
color: rgba(255,255,255,0.5);
font-size: 13px;
font-weight: 300;
line-height: 1.4;
}
.mega-item:hover .mega-title {
color: #fff;
}
.mega-item:hover .mega-desc {
color: rgba(255,255,255,0.7);
}
.mega-footer {
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(255,255,255,0.08);
}
.mega-view-all {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255,255,255,0.6);
font-size: 13px;
font-weight: 400;
transition: color 0.2s;
}
.mega-view-all:hover {
color: #fff;
}
.mega-view-all svg {
transition: transform 0.2s;
}
.mega-view-all:hover svg {
transform: translateX(3px);
}
.footer {
background: var(--footer-gray);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.footer-container {
width: 100%;
max-width: 1280px;
padding: 36px 40px;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-copy {
font-size: 17px;
font-weight: 300;
color: var(--muted);
}
.footer-nav {
display: flex;
gap: 28px;
}
.footer-nav a {
font-size: 17px;
font-weight: 300;
color: var(--muted);
text-transform: lowercase;
transition: color 0.2s;
}
.footer-nav a:hover { color: var(--body); }
.back-to-top {
position: absolute;
top: -24px;
left: 50%;
transform: translateX(-50%);
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--footer-gray);
border: 1px solid rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--muted);
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.back-to-top:hover { background: #e8e8e8; color: var(--body); }
.page-title {
font-size: clamp(72px, 8vw, 102px);
font-weight: 800;
color: var(--body);
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 24px;
}
.lead {
font-size: 24px;
font-weight: 300;
color: var(--muted);
line-height: 1.5;
margin-bottom: 20px;
}
.body-text {
font-size: 18px;
font-weight: 300;
color: var(--muted);
line-height: 1.65;
}
.photo-placeholder {
width: 100%;
aspect-ratio: 1 / 1.1;
border-radius: var(--radius);
overflow: hidden;
}
.photo-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
}
.page-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: flex-start;
}
.section-label {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 48px;
}
.section-label::before,
.section-label::after {
content: '';
flex: 1;
height: 1px;
background: rgba(0,0,0,0.15);
}
.section-label span {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
}
.card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: var(--card-shadow);
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
cursor: pointer;
display: block;
}
.card:hover {
transform: translateY(-4px);
box-shadow: rgba(0,0,0,0.22) 0px 8px 24px 0px;
}
.card-thumb {
width: 100%;
aspect-ratio: 330 / 184;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.card-body {
padding: 16px 40px 20px 16px;
position: relative;
}
.card-arrow {
position: absolute;
top: 18px;
right: 14px;
width: 20px;
height: 20px;
color: #bbb;
opacity: 0;
transform: translateX(-4px);
transition: opacity 0.2s, transform 0.2s;
}
.card:hover .card-arrow { opacity: 1; transform: translateX(0); }
.card-title {
font-size: 17px;
font-weight: 600;
color: var(--body);
line-height: 1.3;
margin-bottom: 4px;
}
.card-cat {
font-size: 14px;
font-weight: 300;
color: var(--muted);
}
.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.avatar {
width: 52px;
height: 52px;
border-radius: 50%;
flex-shrink: 0;
background: linear-gradient(135deg, #222 0%, #444 100%);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 17px;
font-weight: 800;
}
.author-row {
display: flex;
align-items: center;
gap: 14px;
}
.author-name {
font-size: 17px;
font-weight: 600;
color: var(--body);
}
.author-meta {
display: flex;
align-items: center;
gap: 12px;
margin-top: 2px;
}
.author-date {
font-size: 15px;
font-weight: 300;
color: var(--muted);
}
.read-time {
font-size: 15px;
font-weight: 300;
color: var(--muted);
display: flex;
align-items: center;
gap: 5px;
}
.read-time::before { content: '·'; color: rgba(0,0,0,0.25); }
.cta-link {
font-size: 18px;
font-weight: 300;
color: #111;
text-decoration: underline;
text-underline-offset: 3px;
transition: opacity 0.2s;
display: inline-block;
}
.cta-link:hover { opacity: 0.55; }
.divider {
border: none;
border-top: 1px solid rgba(0,0,0,0.08);
margin: 0;
}
.hero {
height: calc(100vh - 130px);
min-height: 540px;
display: flex;
position: relative;
overflow: hidden;
background: var(--white);
}
.hero-panel {
flex: 1;
display: flex;
align-items: center;
padding: 60px 64px;
cursor: pointer;
position: relative;
color: var(--body);
}
.hero-panel--left { justify-content: flex-end; }
.hero-panel--right { justify-content: flex-start; }
.hero-panel--right::before {
content: '<html>\A height:180px;\A .class="jedi">\A CSS3  HTML5\A color:#000;\A jQuery\A function()\A const ai =\A  new Bot();';
white-space: pre;
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 40px;
font-family: 'Courier New', monospace;
font-size: 13px;
line-height: 2;
color: rgba(0,0,0,0.07);
pointer-events: none;
letter-spacing: 0.03em;
}
.hero-panel-inner { max-width: 340px; }
.hero-panel--left  .hero-panel-inner { text-align: right; }
.hero-panel--right .hero-panel-inner { text-align: left; }
.hero-h1 {
font-size: clamp(52px, 6vw, 82px);
font-weight: 800;
color: var(--body);
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 18px;
transition: color 0.2s;
}
.hero-panel--left:hover  .hero-h1,
.hero-panel--right:hover .hero-h1 { color: #111; }
.hero-h1 .bracket {
font-weight: 300;
color: #aaa;
}
.hero-sub {
font-size: 17px;
font-weight: 300;
color: var(--body);
line-height: 1.55;
}
.hero::after {
content: '';
position: absolute;
top: 60px; bottom: 60px;
left: 50%;
width: 1px;
background: rgba(0,0,0,0.1);
pointer-events: none;
z-index: 1;
}
.hero-portrait {
position: absolute;
top: 0; left: 50%;
transform: translateX(-50%);
height: 100%;
width: 340px;
pointer-events: none;
display: flex;
align-items: flex-end;
justify-content: center;
z-index: 2;
}
.hero-avatar {
width: 280px;
height: 420px;
position: relative;
}
.avatar-shape {
width: 220px;
height: 220px;
border-radius: 50%;
background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.avatar-initials {
width: 160px;
height: 160px;
border-radius: 50%;
background: #222;
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 52px;
font-weight: 800;
letter-spacing: -2px;
overflow: hidden;
padding: 20px;
}
.avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.avatar-blob {
position: absolute;
border-radius: 50%;
opacity: 0.75;
}
.avatar-blob-1 { width: 54px; height: 54px; background: #4ECDC4; bottom: 150px; right: 18px; }
.avatar-blob-2 { width: 34px; height: 34px; background: #FF6B6B; bottom: 198px; left: 24px;  }
.avatar-blob-3 { width: 22px; height: 22px; background: #FFE66D; bottom: 108px; right: 4px;  }
.portfolio-preview {
background: var(--section-gray);
padding: 80px 0;
}
.view-all-wrap { text-align: center; margin-top: 48px; }
.view-all {
font-size: 18px;
font-weight: 300;
color: #111;
text-decoration: underline;
text-underline-offset: 3px;
transition: opacity 0.2s;
}
.view-all:hover { opacity: 0.6; }
.thumb-wp    { background: linear-gradient(135deg, #21759B 0%, #157EB5 100%); }
.thumb-ai    { background: linear-gradient(135deg, #6C3483 0%, #9B59B6 100%); }
.thumb-react { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.card-thumb-inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
position: relative;
}
.mock-wp {
width: 85%;
background: #fff;
border-radius: var(--radius);
padding: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.mock-wp-bar { display: flex; gap: 5px; margin-bottom: 10px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.r { background: #FF5F57; }
.mock-dot.y { background: #FFBD2E; }
.mock-dot.g { background: #28CA41; }
.mock-wp-url { background: #f0f0f0; border-radius: 4px; height: 7px; flex: 1; }
.mock-wp-body { display: flex; gap: 8px; }
.mock-sidebar { width: 28%; background: #21759B; border-radius: 4px; height: 60px; }
.mock-content { flex: 1; }
.mock-line { height: 5px; border-radius: 3px; background: #e8e8e8; margin-bottom: 5px; }
.mock-line.short  { width: 60%; }
.mock-line.medium { width: 80%; }
.mock-ai {
width: 85%;
background: rgba(255,255,255,0.12);
border-radius: 10px;
padding: 14px;
border: 1px solid rgba(255,255,255,0.2);
}
.mock-chat-msg { display: flex; flex-direction: column; gap: 7px; }
.mock-msg {
border-radius: 12px;
padding: 7px 10px;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.02em;
max-width: 80%;
}
.mock-msg.user {
background: rgba(255,255,255,0.2);
color: #fff;
align-self: flex-end;
border-bottom-right-radius: 3px;
}
.mock-msg.bot {
background: rgba(255,255,255,0.9);
color: #6C3483;
align-self: flex-start;
border-bottom-left-radius: 3px;
}
.mock-typing { display: flex; gap: 3px; align-items: center; padding: 6px 10px; }
.mock-typing span {
width: 5px; height: 5px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
animation: typing 1.2s infinite;
}
.mock-typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-typing span:nth-child(3) { animation-delay: 0.4s; }
.mock-react {
width: 85%;
background: rgba(255,255,255,0.06);
border-radius: var(--radius);
padding: 14px;
font-family: 'Courier New', monospace;
border: 1px solid rgba(97,218,251,0.2);
}
.code-line { font-size: 10px; line-height: 1.8; white-space: nowrap; }
.code-keyword  { color: #C792EA; }
.code-component{ color: #61DAFB; }
.code-prop     { color: #C3E88D; }
.code-string   { color: #F78C6C; }
.code-comment  { color: rgba(255,255,255,0.25); }
.about-hero-strip {
display: flex;
gap: 16px;
padding: 40px 0;
flex-wrap: wrap;
}
.photo-strip-item {
flex: 1;
aspect-ratio: 1;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.2s, opacity 0.2s;
cursor: pointer;
color: rgba(255,255,255,0.9);
}
.photo-strip-item svg {
width: 28px;
height: 28px;
}
.photo-strip-item:hover { transform: scale(1.04); opacity: 0.85; }
.strip-1 { background: linear-gradient(135deg, #FFEAA7, #F6CA51); }
.strip-2 { background: linear-gradient(135deg, #74B9FF, #0984E3); }
.strip-3 { background: linear-gradient(135deg, #55EFC4, #00B894); }
.strip-4 { background: linear-gradient(135deg, #FD79A8, #E84393); }
.strip-5 { background: linear-gradient(135deg, #FDCB6E, #E17055); }
.strip-6 { background: linear-gradient(135deg, #A29BFE, #6C5CE7); }
.skills-split {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 60px;
align-items: center;
}
.skills-col h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 24px;
}
.skills-col li {
font-size: 18px;
font-weight: 300;
color: var(--muted);
padding: 6px 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.skills-col li:last-child { border-bottom: none; }
.skills-col.right { text-align: right; }
.donut-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.donut-chart { width: 160px; height: 160px; position: relative; }
.donut-svg { width: 160px; height: 160px; transform: rotate(-90deg); }
.donut-track { fill: none; stroke: #e8e8e8; stroke-width: 28; }
.donut-seg-dev {
fill: none;
stroke: #333;
stroke-width: 28;
stroke-dasharray: 226 150;
stroke-dashoffset: 0;
}
.donut-seg-ai {
fill: none;
stroke: #6C5CE7;
stroke-width: 28;
stroke-dasharray: 150 226;
stroke-dashoffset: -226;
}
.donut-labels { display: flex; gap: 16px; }
.donut-label {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
color: var(--muted);
}
.donut-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-dev { background: #333; }
.dot-ai  { background: #6C5CE7; }
.facts-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.facts-image {
width: 100%;
aspect-ratio: 1;
background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
border-radius: var(--radius-card);
display: flex;
align-items: center;
justify-content: center;
font-size: 80px;
}
.facts-list h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 28px;
padding-top: 16px;
}
.facts-list li {
font-size: 18px;
font-weight: 300;
color: var(--muted);
padding: 10px 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list a {
color: var(--body);
text-decoration: underline;
text-underline-offset: 3px;
}
.bar-chart-section h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
text-align: right;
margin-bottom: 48px;
}
.bar-chart {
display: flex;
align-items: flex-end;
position: relative;
height: 280px;
}
.bar-y-labels {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
padding-bottom: 40px;
margin-right: 24px;
flex-shrink: 0;
}
.bar-y-label {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
}
.bar-items {
display: flex;
align-items: flex-end;
gap: 16px;
flex: 1;
height: 100%;
}
.bar-item {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
height: 100%;
}
.bar-fill {
width: 100%;
border-radius: 6px 6px 0 0;
display: flex;
align-items: flex-end;
justify-content: center;
padding-bottom: 12px;
transform: scaleY(0);
transform-origin: bottom;
transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bar-fill.animated { transform: scaleY(1); }
.bar-pct { font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.9); }
.bar-pct sup { font-size: 13px; font-weight: 600; }
.bar-label {
margin-top: 10px;
font-size: 13px;
font-weight: 600;
color: var(--muted);
text-align: center;
letter-spacing: 0.02em;
}
.b1 { background: #4ECDC4; height: 95%; transition-delay: 0.1s; }
.b2 { background: #FF6B6B; height: 90%; transition-delay: 0.25s; }
.b3 { background: #FFE66D; height: 85%; transition-delay: 0.4s; }
.b3 .bar-pct { color: rgba(0,0,0,0.7); }
.b4 { background: #FD79A8; height: 80%; transition-delay: 0.55s; }
.b5 { background: #A29BFE; height: 75%; transition-delay: 0.7s; }
.feature-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.feature-row.alt { direction: rtl; }
.feature-row.alt > * { direction: ltr; }
.feature-text h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 20px;
}
.feature-text p {
font-size: 18px;
font-weight: 300;
color: var(--muted);
line-height: 1.7;
margin-bottom: 28px;
}
.img-placeholder {
width: 100%;
aspect-ratio: 4 / 3;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
font-size: 56px;
}
.img-wp       { background: rgba(33,117,155,0.07);  border: 2px dashed rgba(33,117,155,0.25); }
.img-ai-tools { background: rgba(108,92,231,0.07);  border: 2px dashed rgba(108,92,231,0.25); }
.img-story    { background: rgba(51,51,51,0.05);    border: 2px dashed rgba(51,51,51,0.18);   }
.hero-mockup {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.mock-card {
border-radius: 10px;
padding: 14px;
background: var(--white);
box-shadow: rgba(0,0,0,0.12) 0 2px 12px;
overflow: hidden;
}
.mock-header { display: flex; gap: 5px; margin-bottom: 8px; }
.mock-accent {
height: 28px;
border-radius: 4px;
background: linear-gradient(90deg, #21759B, #157EB5);
margin-bottom: 5px;
}
.mock-chat-row { display: flex; flex-direction: column; gap: 5px; }
.mock-bubble {
padding: 5px 8px;
border-radius: 8px;
font-size: 9px;
font-weight: 600;
}
.mock-bubble.u { background: #6C5CE7; color: #fff; align-self: flex-end; }
.mock-bubble.b { background: #f0f0f0; color: #555; align-self: flex-start; }
.mock-code-line { font-family: monospace; font-size: 9px; line-height: 1.7; }
.kw  { color: #C792EA; }
.fn  { color: #61DAFB; }
.st  { color: #F78C6C; }
.mock-n8n { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.n8n-node {
width: 28px;
height: 28px;
border-radius: 6px;
background: #FF6B35;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
}
.n8n-node--blue   { background: #21759B; }
.n8n-node--purple { background: #6C5CE7; }
.n8n-arrow { color: #bbb; font-size: 10px; }
.thumb-content {
width: 90%;
height: 85%;
border-radius: 6px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.t-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #0f4a63 100%); }
.t-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.t-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.t-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.t-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);    }
.t-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }
.t-woo   { background: linear-gradient(135deg, #7b2d8b 0%, #9B59B6 100%); }
.t-next  { background: linear-gradient(135deg, #0a0a0a 0%, #252525 100%); }
.t-gen   { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.sm-mock { padding: 10px; width: 100%; height: 100%; }
.sm-line {
height: 4px;
border-radius: 2px;
background: rgba(255,255,255,0.2);
margin-bottom: 4px;
}
.sm-line.w70 { width: 70%; }
.sm-line.w50 { width: 50%; }
.sm-line.mt { margin-top: 6px; }
.sm-block {
height: 20px;
background: rgba(255,255,255,0.15);
border-radius: 3px;
margin: 6px 0;
}
.sm-flex-row { display: flex; gap: 4px; margin-top: 4px; }
.sm-panel {
flex: 1;
height: 32px;
background: rgba(255,255,255,0.15);
border-radius: 3px;
}
.sm-panel--wide {
flex: 2;
height: 32px;
background: rgba(255,255,255,0.1);
border-radius: 3px;
}
.sm-card-row { display: flex; gap: 4px; }
.sm-card-item {
flex: 1;
height: 44px;
background: rgba(255,255,255,0.15);
border-radius: 5px;
}
.sm-btn {
height: 14px;
border-radius: 3px;
background: rgba(255,255,255,0.25);
margin-top: 5px;
width: 60%;
}
.sm-input-row {
display: flex;
gap: 3px;
margin-top: 6px;
align-items: center;
}
.sm-input-bar {
flex: 1;
height: 4px;
background: rgba(255,255,255,0.15);
border-radius: 2px;
}
.sm-send-btn {
width: 22px;
height: 22px;
border-radius: 50%;
background: rgba(255,255,255,0.2);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
}
.sm-node-row {
display: flex;
align-items: center;
gap: 4px;
margin-top: 8px;
}
.sm-node {
width: 22px;
height: 22px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
}
.sm-node--orange { background: #FF6B35; }
.sm-node--navy   { background: #21759B; }
.sm-node--purple { background: #6C5CE7; }
.sm-node--green  { background: #00B894; }
.sm-connector {
height: 2px;
flex: 1;
background: rgba(255,255,255,0.2);
}
.sm-chat { display: flex; flex-direction: column; gap: 4px; }
.sm-bub { padding: 4px 7px; border-radius: 8px; font-size: 8px; font-weight: 700; max-width: 80%; }
.sm-bub.u { background: rgba(255,255,255,0.25); color: #fff; align-self: flex-end; }
.sm-bub.b { background: rgba(255,255,255,0.9);  color: #4a2c82; align-self: flex-start; }
.sm-code { font-family: monospace; font-size: 8px; line-height: 1.7; }
.sm-kw { color: #C792EA; }
.sm-fn { color: #61DAFB; }
.sm-brand-label {
font-size: 11px;
color: rgba(255,255,255,0.8);
font-weight: 800;
letter-spacing: -0.5px;
margin-bottom: 6px;
}
.sm-tag-row { display: flex; gap: 4px; margin-top: 5px; }
.sm-tag {
flex: 1;
height: 16px;
border-radius: 3px;
background: rgba(255,255,255,0.12);
}
.sm-api-log {
font-family: monospace;
font-size: 9px;
color: rgba(255,255,255,0.5);
line-height: 1.8;
}
.sm-api-body     { color: rgba(255,255,255,0.3); }
.sm-api-response { color: #61DAFB; }
.sm-bar-row { display: flex; gap: 4px; align-items: flex-end; margin-top: 6px; }
.sm-bar { width: 14px; border-radius: 2px 2px 0 0; background: rgba(255,255,255,0.4); }
.blog-column {
max-width: var(--col-blog);
margin: 0 auto;
padding: 80px 20px;
}
article {
margin-bottom: 40px;
padding-bottom: 40px;
}
.post-thumb {
display: block;
width: 100%;
aspect-ratio: 680 / 400;
border-radius: var(--radius);
overflow: hidden;
margin-bottom: 20px;
}
.post-thumb-inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
position: relative;
transition: opacity 0.2s;
}
.post-thumb:hover .post-thumb-inner { opacity: 0.88; }
.t1  { background: linear-gradient(135deg, #1a3a5c  0%, #21759B  100%); }
.t2  { background: linear-gradient(135deg, #4a2c82  0%, #8e44ad  100%); }
.t3  { background: linear-gradient(135deg, #0d1b2a  0%, #1a3a5c  100%); }
.t4  { background: linear-gradient(135deg, #1a1a1a  0%, #333     100%); }
.t5  { background: linear-gradient(135deg, #7c1515  0%, #c0392b  100%); }
.t6  { background: linear-gradient(135deg, #00695c  0%, #00897b  100%); }
.t7  { background: linear-gradient(135deg, #1a2a6c  0%, #b21f1f  70%, #fdbb2d 100%); }
.t8  { background: linear-gradient(135deg, #134e5e  0%, #71b280  100%); }
.t9  { background: linear-gradient(135deg, #232526  0%, #414345  100%); }
.t10 { background: linear-gradient(135deg, #3a1c71  0%, #d76d77  60%, #ffaf7b 100%); }
.post-title {
font-size: 48px;
font-weight: 300;
color: var(--body);
line-height: 1.1;
margin-bottom: 14px;
letter-spacing: -0.02em;
}
.post-title a { color: inherit; transition: opacity 0.2s; }
.post-title a:hover { opacity: 0.65; }
.post-excerpt {
font-size: 22px;
font-weight: 300;
color: var(--muted);
line-height: 1.45;
margin-bottom: 20px;
}
.blog-author-row {
display: flex;
align-items: center;
gap: 14px;
height: 52px;
}
.author-info { display: flex; flex-direction: column; }
.pagination { margin-top: 24px; padding-top: 24px; }
.pagination a {
font-size: 20px;
font-weight: 300;
color: #111;
text-decoration: underline;
text-underline-offset: 3px;
transition: opacity 0.2s;
}
.pagination a:hover { opacity: 0.55; }
.read-progress {
position: fixed;
top: 92px;
left: 0;
right: 0;
height: 3px;
background: rgba(0,0,0,0.06);
z-index: 99;
}
.read-progress-fill {
height: 100%;
background: #21759B;
width: 0%;
transition: width 0.1s linear;
}
.post-wrap {
max-width: var(--col-blog);
margin: 0 auto;
padding: 72px 20px 96px;
}
.post-breadcrumb {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 28px;
}
.post-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--body); }
.post-breadcrumb .sep { color: rgba(0,0,0,0.2); }
.post-cat-tag {
display: inline-block;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #21759B;
background: rgba(33,117,155,0.08);
padding: 5px 12px;
border-radius: 20px;
margin-bottom: 20px;
}
.post-h1 {
font-size: 56px;
font-weight: 300;
color: var(--body);
line-height: 1.1;
letter-spacing: -0.025em;
margin-bottom: 22px;
}
.post-subtitle {
font-size: 24px;
font-weight: 300;
color: var(--muted);
line-height: 1.45;
margin-bottom: 28px;
}
.post-author-row {
display: flex;
align-items: center;
gap: 14px;
padding-bottom: 32px;
border-bottom: 1px solid rgba(0,0,0,0.08);
margin-bottom: 32px;
}
.post-hero-img {
width: 100%;
aspect-ratio: 680 / 400;
border-radius: var(--radius);
overflow: hidden;
margin-bottom: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 72px;
background: linear-gradient(135deg, #1a3a5c 0%, #21759B 100%);
}
.post-body p {
font-size: 20px;
font-weight: 300;
color: var(--body);
line-height: 34px;
margin-bottom: 32px;
}
.post-body h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
letter-spacing: -0.02em;
line-height: 1.15;
margin-top: 56px;
margin-bottom: 20px;
}
.post-body h3 {
font-size: 24px;
font-weight: 700;
color: var(--body);
margin-top: 40px;
margin-bottom: 16px;
line-height: 1.3;
}
.post-body a {
color: #111;
text-decoration: underline;
text-underline-offset: 3px;
transition: opacity 0.2s;
}
.post-body a:hover { opacity: 0.55; }
.post-body ol {
margin: 0 0 32px;
padding-left: 28px;
}
.post-body ol li {
font-size: 20px;
font-weight: 300;
color: var(--body);
line-height: 34px;
margin-bottom: 10px;
padding-left: 8px;
}
.post-body ul {
margin: 0 0 32px;
padding-left: 28px;
list-style: none;
}
.post-body ul li {
font-size: 20px;
font-weight: 300;
color: var(--body);
line-height: 34px;
margin-bottom: 8px;
padding-left: 8px;
position: relative;
}
.post-body ul li::before {
content: '—';
position: absolute;
left: -20px;
color: rgba(0,0,0,0.25);
font-weight: 300;
}
.post-img {
width: 100%;
border-radius: var(--radius);
overflow: hidden;
margin: 40px 0;
}
.post-img-inner {
width: 100%;
aspect-ratio: 680 / 400;
display: flex;
align-items: center;
justify-content: center;
font-size: 52px;
border-radius: var(--radius);
}
.pi1 { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.pi2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.pi3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 100%); }
.code-block {
background: #1a1a2e;
border-radius: var(--radius);
padding: 24px 28px;
margin: 32px 0;
overflow-x: auto;
font-family: 'Courier New', monospace;
font-size: 14px;
line-height: 1.8;
border-left: 3px solid #21759B;
}
.code-block .kw  { color: #C792EA; }
.code-block .fn  { color: #61DAFB; }
.code-block .str { color: #F78C6C; }
.code-block .cm  { color: rgba(255,255,255,0.35); }
.code-block .pl  { color: #C3E88D; }
.code-block .wh  { color: rgba(255,255,255,0.85); }
.code-label {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255,255,255,0.3);
margin-bottom: 12px;
}
.code-label span {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
}
.code-label .r { background: #FF5F57; }
.code-label .y { background: #FFBD2E; }
.code-label .g { background: #28CA41; }
.callout {
background: rgba(33,117,155,0.07);
border-left: 3px solid #21759B;
border-radius: 0 var(--radius) var(--radius) 0;
padding: 20px 24px;
margin: 32px 0;
}
.callout p { margin-bottom: 0; font-size: 18px; }
.callout strong { font-weight: 700; color: var(--body); }
.post-footer {
border-top: 1px solid rgba(0,0,0,0.08);
margin-top: 64px;
padding-top: 36px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
background: var(--section-gray);
padding: 6px 14px;
border-radius: 20px;
transition: background 0.2s;
}
.tag:hover { background: #ebebeb; }
.share-row { display: flex; align-items: center; gap: 12px; }
.share-label {
font-size: 15px;
font-weight: 300;
color: var(--muted);
}
.share-btn {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--section-gray);
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--muted);
transition: background 0.2s, color 0.2s;
}
.share-btn:hover { background: #333; color: #fff; }
.share-btn--copied { background: #00B894 !important; color: #fff !important; }
.more-section {
background: var(--section-gray);
padding: 80px 40px;
}
.more-inner {
max-width: var(--max-w);
margin: 0 auto;
}
.more-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.more-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.14) 0 1px 4px;
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
display: block;
}
.more-card:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,0.2) 0 8px 24px; }
.more-thumb {
width: 100%;
aspect-ratio: 330 / 184;
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
}
.mt1 { background: linear-gradient(135deg, #4a2c82 0%, #8e44ad 100%); }
.mt2 { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.mt3 { background: linear-gradient(135deg, #1a1a1a 0%, #333     100%); }
.more-body { padding: 16px 36px 20px 16px; position: relative; }
.more-arrow {
position: absolute;
top: 18px; right: 14px;
width: 20px; height: 20px;
color: #bbb;
opacity: 0;
transform: translateX(-4px);
transition: opacity 0.2s, transform 0.2s;
}
.more-card:hover .more-arrow { opacity: 1; transform: translateX(0); }
.more-title {
font-size: 17px;
font-weight: 600;
color: var(--body);
line-height: 1.3;
margin-bottom: 4px;
}
.more-cat { font-size: 14px; font-weight: 300; color: var(--muted); }
.contact-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.contact-portrait {
display: flex;
align-items: flex-end;
justify-content: center;
}
.portrait-placeholder {
width: 88%;
aspect-ratio: 0.75;
background: linear-gradient(160deg, #e8e8e8 0%, #d0d0d0 100%);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.portrait-placeholder::after {
content: 'Your Photo';
font-size: 13px;
font-weight: 600;
color: rgba(0,0,0,0.25);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.contact-abstract {
width: 100%;
max-width: 360px;
height: auto;
}
.avail-badge {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
color: #00B894;
background: rgba(0,184,148,0.08);
padding: 6px 14px;
border-radius: 20px;
margin-bottom: 32px;
}
.avail-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #00B894;
animation: pulse 2s infinite;
}
.social-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
}
.social-item { margin-bottom: 28px; }
.social-link {
display: flex;
align-items: center;
gap: 14px;
font-size: 18px;
font-weight: 300;
transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.7; }
.social-icon {
width: 46px;
height: 46px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.social-icon svg { width: 22px; height: 22px; }
.si-linkedin { background: rgb(9,130,192);  color: #fff; }
.si-github   { background: #24292e;         color: #fff; }
.si-whatsapp { background: #25D366;         color: #fff; }
.si-email    { background: #333;            color: #fff; }
.sc-linkedin { color: rgb(9,130,192);  }
.sc-github   { color: #24292e;         }
.sc-whatsapp { color: #25D366;         }
.sc-email    { color: #333;            }
.form-heading {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 48px;
}
.form-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.form-left { display: flex; flex-direction: column; gap: 24px; }
.field-group { display: flex; flex-direction: column; }
.field-label {
font-size: 17px;
font-weight: 300;
color: var(--body);
margin-bottom: 10px;
display: block;
}
input[type="text"],
input[type="email"],
select,
textarea {
font-family: var(--font);
font-size: 17px;
font-weight: 300;
color: var(--body);
background: var(--white);
border: 1px solid rgb(148,148,148);
border-radius: var(--radius);
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
width: 100%;
}
input[type="text"],
input[type="email"],
select { height: 48px; padding: 0 16px; }
select {
appearance: none;
cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
}
textarea {
padding: 14px 16px;
height: 172px;
resize: vertical;
}
input:focus, select:focus, textarea:focus {
border-color: #333;
box-shadow: 0 0 0 3px rgba(51,51,51,0.08);
}
.form-right { display: flex; flex-direction: column; }
.msg-area { flex: 1; display: flex; flex-direction: column; }
.msg-area textarea { flex: 1; height: auto; min-height: 200px; }
.submit-row { display: flex; justify-content: flex-end; margin-top: 16px; }
.btn-submit {
background: rgb(51,51,51);
color: var(--white);
border: 1px solid rgb(51,51,51);
border-radius: var(--radius);
height: 48px;
padding: 0 28px;
font-family: var(--font);
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
letter-spacing: 0.01em;
}
.btn-submit:hover  { background: #111; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.form-success {
display: none;
text-align: center;
padding: 48px 0;
}
.form-success .check {
width: 60px;
height: 60px;
border-radius: 50%;
background: #00B894;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: #fff;
}
.form-success h3 {
font-size: 28px;
font-weight: 300;
color: var(--body);
margin-bottom: 10px;
}
.form-success p {
font-size: 18px;
font-weight: 300;
color: var(--muted);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}
@keyframes typing {
0%, 60%, 100% { transform: translateY(0);   opacity: 0.4; }
30%           { transform: translateY(-4px); opacity: 1;   }
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,148,0.5); }
50%       { box-shadow: 0 0 0 6px rgba(0,184,148,0); }
}
.anim-fade-up { animation: fadeUp 0.6s ease both; }
.anim-fade-in { animation: fadeIn 0.5s ease both; }
.learn-hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 340px;
}
.learn-book {
width: 180px;
height: 240px;
background: linear-gradient(160deg, #4a2c82 0%, #6C5CE7 100%);
border-radius: 4px 12px 12px 4px;
position: relative;
box-shadow: -6px 6px 24px rgba(108,92,231,0.4), 6px 6px 24px rgba(0,0,0,0.25);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 16px;
z-index: 2;
transform: rotate(-4deg);
}
.learn-book::before {
content: '';
position: absolute;
top: 0; bottom: 0;
left: 0;
width: 14px;
background: rgba(0,0,0,0.18);
border-radius: 4px 0 0 4px;
}
.learn-book-badge {
position: absolute;
top: 12px;
right: 12px;
background: rgba(255,255,255,0.2);
border: 1px solid rgba(255,255,255,0.3);
border-radius: 12px;
padding: 3px 8px;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.06em;
color: #fff;
}
.learn-book-icon {
font-size: 32px;
margin-bottom: 8px;
display: block;
}
.learn-book-title {
font-size: 18px;
font-weight: 800;
color: #fff;
line-height: 1.2;
letter-spacing: -0.02em;
}
.learn-book-sub {
font-size: 9px;
color: rgba(255,255,255,0.65);
line-height: 1.4;
margin-top: 6px;
font-weight: 400;
}
.learn-book-author {
display: flex;
align-items: center;
gap: 6px;
margin-top: 12px;
}
.learn-book-avatar {
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(255,255,255,0.3);
font-size: 9px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
flex-shrink: 0;
}
.learn-book-name {
font-size: 9px;
color: rgba(255,255,255,0.65);
font-weight: 600;
}
.learn-screen {
position: absolute;
right: 0;
top: 20px;
width: 260px;
height: 200px;
background: var(--white);
border-radius: var(--radius);
box-shadow: rgba(0,0,0,0.15) 0 4px 24px;
padding: 14px;
z-index: 1;
transform: rotate(2deg);
}
.learn-screen-bar {
display: flex;
gap: 4px;
margin-bottom: 10px;
}
.learn-screen-dot {
width: 7px;
height: 7px;
border-radius: 50%;
}
.learn-screen-dot.r { background: #FF5F57; }
.learn-screen-dot.y { background: #FFBD2E; }
.learn-screen-dot.g { background: #28CA41; }
.learn-screen-content { display: flex; gap: 10px; height: calc(100% - 26px); }
.learn-screen-sidebar {
width: 70px;
display: flex;
flex-direction: column;
gap: 6px;
}
.learn-screen-nav-item {
height: 7px;
border-radius: 3px;
background: #e8e8e8;
}
.learn-screen-nav-item.active { background: #6C5CE7; width: 80%; }
.learn-screen-main { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.learn-screen-heading {
height: 10px;
border-radius: 3px;
background: #222;
width: 60%;
}
.learn-screen-line {
height: 5px;
border-radius: 2px;
background: #e8e8e8;
}
.learn-screen-line.short { width: 75%; }
.learn-screen-line.medium { width: 90%; }
.learn-screen-img {
height: 60px;
border-radius: 4px;
background: linear-gradient(135deg, #e8e0ff 0%, #d4c8ff 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
margin-top: 4px;
}
.learn-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.lt-blog    { background: linear-gradient(135deg, #1a3a5c 0%, #21759B 100%); }
.lt-guide   { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.lt-n8n     { background: linear-gradient(135deg, #1a1a1a 0%, #333    100%); }
.lt-youtube { background: linear-gradient(135deg, #7c0000 0%, #c0392b 100%); }
.lt-news    { background: #f5f5f5; }
.lt-tools   { background: linear-gradient(135deg, #0a0a0a 0%, #252525 100%); }
.lt-news .learn-thumb-inner { color: #333; }
.learn-thumb-inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.lt-preview-blog {
width: 88%;
height: 82%;
background: rgba(255,255,255,0.1);
border-radius: 6px;
padding: 10px;
}
.lt-blog-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); margin-bottom: 5px; }
.lt-blog-line.short { width: 60%; }
.lt-blog-line.medium { width: 80%; }
.lt-blog-img { height: 48px; border-radius: 4px; background: rgba(255,255,255,0.15); margin-bottom: 6px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.lt-preview-book {
width: 70px;
height: 96px;
background: rgba(255,255,255,0.2);
border-radius: 2px 8px 8px 2px;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 8px;
position: relative;
box-shadow: -3px 3px 12px rgba(0,0,0,0.25);
}
.lt-preview-book::before {
content: '';
position: absolute;
top:0; bottom:0; left:0;
width: 8px;
background: rgba(0,0,0,0.2);
border-radius: 2px 0 0 2px;
}
.lt-book-title { font-size: 9px; font-weight: 800; color: #fff; line-height: 1.2; }
.lt-book-icon  { font-size: 20px; margin-bottom: 4px; }
.lt-preview-n8n { display:flex; flex-direction:column; align-items:center; gap:6px; }
.lt-n8n-row { display:flex; align-items:center; gap:5px; }
.lt-n8n-node {
width: 28px; height: 28px; border-radius: 6px;
display:flex; align-items:center; justify-content:center; font-size: 13px;
}
.lt-n8n-node--orange { background: #FF6B35; }
.lt-n8n-node--navy   { background: #21759B; }
.lt-n8n-node--purple { background: #6C5CE7; }
.lt-n8n-node--green  { background: #00B894; }
.lt-n8n-arrow { color:rgba(255,255,255,0.5); font-size: 11px; }
.lt-n8n-label { font-size: 9px; color:rgba(255,255,255,0.4); font-family: monospace; }
.lt-preview-youtube {
width: 90px; height: 58px;
background: rgba(255,255,255,0.1);
border-radius: 6px;
display:flex; align-items:center; justify-content:center;
position: relative;
}
.lt-play-btn {
width: 28px; height: 28px; border-radius: 50%;
background: rgba(255,255,255,0.9);
display:flex; align-items:center; justify-content:center;
}
.lt-play-btn::after { content: '▶'; font-size: 10px; color: #c0392b; margin-left: 2px; }
.lt-preview-news {
display:flex; flex-direction:column; align-items:center; gap:6px;
}
.lt-news-logo {
display:flex; flex-direction:column; align-items:center; gap:3px;
}
.lt-news-lines { display:flex; flex-direction:column; align-items:center; gap:3px; }
.lt-news-line { height: 2px; border-radius: 1px; background: #aaa; }
.lt-news-line:nth-child(1) { width: 30px; }
.lt-news-line:nth-child(2) { width: 22px; }
.lt-news-line:nth-child(3) { width: 16px; }
.lt-news-name { font-size: 14px; font-weight: 800; color: #333; letter-spacing: 0.2em; text-transform: uppercase; }
.lt-news-sub  { font-size: 8px; font-weight: 600; color: #999; letter-spacing: 0.18em; text-transform: uppercase; }
.lt-preview-tools {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px;
width: 80%;
height: 80%;
padding: 8px;
}
.lt-tool-item {
background: rgba(255,255,255,0.12);
border-radius: 6px;
display:flex; align-items:center; justify-content:center;
font-size: 16px;
}
.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.service-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: var(--card-shadow);
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
display: block;
cursor: pointer;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: rgba(0,0,0,0.2) 0 10px 28px;
}
.service-thumb {
width: 100%;
aspect-ratio: 330 / 200;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.st-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #21759B 100%); }
.st-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.st-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.st-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.st-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.st-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }
.service-icon {
font-size: 56px;
filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.12) translateY(-3px); }
.service-tag {
position: absolute;
top: 14px;
right: 14px;
background: rgba(255,255,255,0.18);
border: 1px solid rgba(255,255,255,0.28);
border-radius: 20px;
padding: 4px 11px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255,255,255,0.9);
}
.service-tag--cat {
background: rgba(0,0,0,0.5);
border: 1px solid rgba(255,255,255,0.2);
}
.service-thumb.has-image {
background: #1a1a1a;
}
.service-thumb-img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
transition: transform 0.4s ease, filter 0.4s ease;
}
.service-card:hover .service-thumb-img {
transform: scale(1.05);
}
.service-thumb-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
pointer-events: none;
z-index: 1;
}
.service-thumb.no-image {
background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}
.service-thumb-placeholder {
display: flex;
align-items: center;
justify-content: center;
color: #bbb;
}
.service-thumb-placeholder svg {
opacity: 0.6;
}
.service-thumb .service-tag {
z-index: 2;
}
.service-card-body {
padding: 16px 20px 18px;
position: relative;
}
.service-card-arrow {
position: absolute;
top: 16px;
right: 16px;
width: 18px;
height: 18px;
color: #ccc;
opacity: 0;
transform: translateX(-4px);
transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }
.service-card-title {
font-size: 16px;
font-weight: 700;
color: var(--body);
margin-bottom: 4px;
line-height: 1.3;
padding-right: 24px;
}
.service-card-cat {
font-size: 14px;
font-weight: 400;
color: var(--muted);
line-height: 1.4;
margin: 0;
}
.service-card-desc {
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
margin-bottom: 16px;
}
.service-card-features {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.service-pill {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--muted);
background: var(--section-gray);
padding: 4px 10px;
border-radius: 12px;
}
.service-hero-visual {
display: flex;
align-items: center;
justify-content: center;
}
.service-hero-icon-wrap {
width: 100%;
aspect-ratio: 1 / 0.75;
border-radius: var(--radius-card);
display: flex;
align-items: center;
justify-content: center;
font-size: 100px;
position: relative;
overflow: hidden;
}
.shi-wp    { background: linear-gradient(135deg, #1a6b8a 0%, #21759B 100%); }
.shi-larv  { background: linear-gradient(135deg, #7c1515 0%, #FF2D20 100%); }
.shi-react { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%); }
.shi-ai    { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.shi-n8n   { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.shi-bot   { background: linear-gradient(135deg, #0f4c75 0%, #1B262C 100%); }
.service-hero-icon-wrap .service-cat-label {
position: absolute;
bottom: 20px;
right: 20px;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
border-radius: 20px;
padding: 6px 14px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.9);
}
.hero-cta-row {
display: flex;
align-items: center;
gap: 16px;
margin-top: 32px;
flex-wrap: wrap;
}
.btn-primary {
background: var(--nav-bg);
color: #fff;
border: 2px solid var(--nav-bg);
border-radius: var(--radius);
height: 50px;
padding: 0 28px;
font-family: var(--font);
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.btn-primary:hover { background: #222; transform: translateY(-1px); }
.btn-ghost {
background: transparent;
color: var(--body);
border: 2px solid rgba(0,0,0,0.15);
border-radius: var(--radius);
height: 50px;
padding: 0 28px;
font-family: var(--font);
font-size: 17px;
font-weight: 300;
cursor: pointer;
transition: border-color 0.2s, background 0.2s;
display: inline-flex;
align-items: center;
text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.03); }
.includes-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.include-item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 20px;
background: var(--white);
border-radius: var(--radius);
border: 1px solid rgba(0,0,0,0.07);
transition: border-color 0.2s, box-shadow 0.2s;
}
.include-item:hover {
border-color: rgba(0,0,0,0.14);
box-shadow: rgba(0,0,0,0.06) 0 4px 16px;
}
.include-check {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(0,184,148,0.1);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.include-check svg { width: 14px; height: 14px; color: #00B894; }
.include-text h4 {
font-size: 16px;
font-weight: 700;
color: var(--body);
margin-bottom: 4px;
}
.include-text p {
font-size: 14px;
font-weight: 300;
color: var(--muted);
line-height: 1.5;
}
.process-section h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 48px;
text-align: center;
}
.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
position: relative;
}
.process-steps::before {
content: '';
position: absolute;
top: 28px;
left: calc(12.5% + 14px);
right: calc(12.5% + 14px);
height: 2px;
background: rgba(0,0,0,0.08);
z-index: 0;
}
.process-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 16px;
position: relative;
z-index: 1;
}
.step-num {
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--white);
border: 2px solid rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 800;
color: var(--body);
margin-bottom: 20px;
transition: background 0.2s, border-color 0.2s, color 0.2s;
position: relative;
z-index: 1;
}
.process-step:hover .step-num {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.step-title {
font-size: 17px;
font-weight: 700;
color: var(--body);
margin-bottom: 8px;
}
.step-desc {
font-size: 14px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
}
.related-section h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 40px;
}
.pricing-section {
text-align: center;
}
.pricing-section h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 12px;
}
.pricing-section .lead {
max-width: 520px;
margin: 0 auto 40px;
}
.pricing-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
max-width: 860px;
margin: 0 auto;
}
.pricing-card {
background: var(--white);
border: 1px solid rgba(0,0,0,0.1);
border-radius: var(--radius-card);
padding: 32px 28px;
text-align: left;
transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: rgba(0,0,0,0.2); box-shadow: rgba(0,0,0,0.08) 0 8px 24px; }
.pricing-card.featured {
background: var(--nav-bg);
border-color: var(--nav-bg);
}
.pricing-tier {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-price {
font-size: 40px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 6px;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-unit {
font-size: 14px;
font-weight: 300;
color: var(--muted);
margin-bottom: 24px;
}
.pricing-card.featured .pricing-unit { color: rgba(255,255,255,0.6); }
.pricing-features {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 28px;
}
.pricing-feature {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
font-weight: 300;
color: var(--muted);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-feature::before {
content: '✓';
width: 18px;
height: 18px;
border-radius: 50%;
background: rgba(0,184,148,0.1);
color: #00B894;
font-size: 10px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.pricing-card.featured .pricing-feature::before {
background: rgba(255,255,255,0.15);
color: #fff;
}
.btn-pricing {
width: 100%;
height: 44px;
border-radius: var(--radius);
border: 2px solid rgba(0,0,0,0.15);
background: transparent;
font-family: var(--font);
font-size: 15px;
font-weight: 700;
color: var(--body);
cursor: pointer;
transition: background 0.2s, border-color 0.2s;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
}
.btn-pricing:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3); }
.pricing-card.featured .btn-pricing {
background: rgba(255,255,255,0.15);
border-color: rgba(255,255,255,0.3);
color: #fff;
}
.pricing-card.featured .btn-pricing:hover { background: rgba(255,255,255,0.25); }
.service-cta {
text-align: center;
}
.service-cta h2 {
font-size: 52px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.03em;
line-height: 1.05;
margin-bottom: 16px;
}
.service-cta p {
font-size: 20px;
font-weight: 300;
color: var(--muted);
max-width: 480px;
margin: 0 auto 36px;
line-height: 1.5;
}
.service-breadcrumb {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 20px;
}
.service-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.service-breadcrumb a:hover { color: var(--body); }
.service-breadcrumb .sep { color: rgba(0,0,0,0.2); }
.section-heading {
font-size: 36px;
font-weight: 300;
color: var(--body);
margin-bottom: 40px;
}
.services-trust {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border: 1px solid rgba(0,0,0,0.08);
border-radius: var(--radius-card);
overflow: hidden;
height: fit-content;
margin-top: 16px;
}
.trust-item {
padding: 36px 28px;
border-right: 1px solid rgba(0,0,0,0.08);
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-item:nth-child(2n) { border-right: none; }
.trust-item:nth-child(3),
.trust-item:nth-child(4) { border-bottom: none; }
.trust-num {
font-size: 48px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.04em;
line-height: 1;
margin-bottom: 6px;
}
.trust-label {
font-size: 15px;
font-weight: 300;
color: var(--muted);
}
.booking-layout {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 32px;
align-items: start;
}
.booking-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
overflow: hidden;
}
.consultant-strip {
padding: 24px 28px;
border-bottom: 1px solid rgba(0,0,0,0.07);
display: flex;
align-items: center;
gap: 16px;
}
.consultant-avatar {
width: 52px;
height: 52px;
border-radius: 50%;
background: linear-gradient(135deg, #222 0%, #444 100%);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 18px;
font-weight: 800;
flex-shrink: 0;
}
.consultant-info h3 {
font-size: 17px;
font-weight: 700;
color: var(--body);
margin-bottom: 2px;
}
.consultant-meta {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.consultant-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.consultant-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.duration-selector {
display: flex;
gap: 8px;
padding: 20px 28px;
border-bottom: 1px solid rgba(0,0,0,0.07);
}
.duration-btn {
flex: 1;
height: 40px;
border-radius: 8px;
border: 2px solid rgba(0,0,0,0.1);
background: transparent;
font-family: var(--font);
font-size: 14px;
font-weight: 600;
color: var(--muted);
cursor: pointer;
transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.duration-btn.active {
border-color: var(--nav-bg);
background: var(--nav-bg);
color: #fff;
}
.duration-btn:not(.active):hover {
border-color: rgba(0,0,0,0.25);
color: var(--body);
}
.cal-wrap { padding: 24px 28px 28px; }
.cal-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 22px;
}
.cal-month-title {
font-size: 20px;
font-weight: 700;
color: var(--body);
letter-spacing: -0.01em;
}
.cal-nav-btn {
width: 36px;
height: 36px;
border-radius: 50%;
border: 1px solid rgba(0,0,0,0.12);
background: transparent;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--body);
transition: background 0.2s, border-color 0.2s;
}
.cal-nav-btn:hover { background: var(--section-gray); border-color: rgba(0,0,0,0.2); }
.cal-nav-btn svg { width: 16px; height: 16px; }
.cal-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
margin-bottom: 6px;
}
.cal-weekday {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
text-align: center;
padding: 4px 0 8px;
}
.cal-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 3px;
}
.cal-day {
aspect-ratio: 1;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 600;
color: transparent;
cursor: default;
transition: background 0.15s, color 0.15s;
position: relative;
}
.cal-day.in-month { color: rgba(0,0,0,0.25); }
.cal-day.past.in-month { color: rgba(0,0,0,0.18); }
.cal-day.weekend.in-month { color: rgba(0,0,0,0.22); }
.cal-day.available {
color: var(--body);
cursor: pointer;
}
.cal-day.available::after {
content: '';
position: absolute;
bottom: 4px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 4px;
border-radius: 50%;
background: #21759B;
}
.cal-day.available:hover { background: rgba(33,117,155,0.10); }
.cal-day.today {
outline: 2px solid var(--body);
outline-offset: -2px;
}
.cal-day.selected {
background: var(--nav-bg) !important;
color: #fff !important;
}
.cal-day.selected::after { background: rgba(255,255,255,0.6); }
.cal-legend {
display: flex;
align-items: center;
gap: 20px;
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(0,0,0,0.06);
}
.legend-item {
display: flex;
align-items: center;
gap: 7px;
font-size: 12px;
font-weight: 300;
color: var(--muted);
}
.legend-dot {
width: 8px;
height: 8px;
border-radius: 50%;
}
.legend-dot--avail { background: #21759B; }
.legend-dot--today { border: 2px solid var(--body); }
.legend-dot--past  { background: rgba(0,0,0,0.15); }
.booking-panel { display: flex; flex-direction: column; gap: 16px; }
.booking-empty-state {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
padding: 56px 32px;
text-align: center;
}
.booking-empty-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.booking-empty-state h3 {
font-size: 20px;
font-weight: 700;
color: var(--body);
margin-bottom: 8px;
}
.booking-empty-state p {
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
}
.slots-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
overflow: hidden;
}
.slots-header {
padding: 20px 24px 16px;
border-bottom: 1px solid rgba(0,0,0,0.07);
}
.slots-date-label {
font-size: 18px;
font-weight: 700;
color: var(--body);
margin-bottom: 4px;
}
.slots-timezone {
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.slots-body { padding: 20px 24px; }
.slots-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.slot-btn {
height: 44px;
border-radius: var(--radius);
border: 1.5px solid rgba(0,0,0,0.12);
background: transparent;
font-family: var(--font);
font-size: 14px;
font-weight: 600;
color: var(--body);
cursor: pointer;
transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.slot-btn:hover:not(:disabled) {
border-color: var(--nav-bg);
background: rgba(17,17,17,0.04);
}
.slot-btn.selected {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.slot-btn.booked {
color: rgba(0,0,0,0.25);
border-color: rgba(0,0,0,0.07);
background: var(--section-gray);
cursor: not-allowed;
text-decoration: line-through;
}
.no-slots-msg {
text-align: center;
font-size: 15px;
font-weight: 300;
color: var(--muted);
padding: 20px 0;
}
.booking-form-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
overflow: hidden;
animation: fadeUp 0.4s ease both;
}
.booking-form-header {
padding: 20px 24px 16px;
border-bottom: 1px solid rgba(0,0,0,0.07);
}
.booking-form-header h3 {
font-size: 17px;
font-weight: 700;
color: var(--body);
margin-bottom: 12px;
}
.booking-summary {
display: flex;
flex-direction: column;
gap: 6px;
}
.summary-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 300;
color: var(--muted);
}
.summary-row svg { width: 14px; height: 14px; flex-shrink: 0; color: #21759B; }
.summary-row strong { font-weight: 600; color: var(--body); }
.booking-form-body {
padding: 20px 24px 24px;
display: flex;
flex-direction: column;
gap: 16px;
}
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-label {
font-size: 14px;
font-weight: 600;
color: var(--body);
display: block;
}
.booking-label .optional {
font-weight: 300;
color: var(--muted);
margin-left: 4px;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
font-family: var(--font);
font-size: 15px;
font-weight: 300;
color: var(--body);
background: var(--white);
border: 1.5px solid rgba(0,0,0,0.15);
border-radius: var(--radius);
outline: none;
width: 100%;
transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-field input,
.booking-field select { height: 44px; padding: 0 14px; }
.booking-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.booking-field textarea { padding: 10px 14px; height: 90px; resize: none; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
border-color: #333;
box-shadow: 0 0 0 3px rgba(51,51,51,0.08);
}
.btn-book {
width: 100%;
height: 48px;
background: var(--nav-bg);
color: #fff;
border: none;
border-radius: var(--radius);
font-family: var(--font);
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 4px;
}
.btn-book:hover  { background: #222; transform: translateY(-1px); }
.btn-book:active { transform: translateY(0); }
.change-selection {
font-size: 13px;
font-weight: 300;
color: var(--muted);
text-align: center;
margin-top: 8px;
}
.change-selection a {
color: var(--body);
text-decoration: underline;
text-underline-offset: 2px;
cursor: pointer;
}
.change-selection a:hover { opacity: 0.6; }
.booking-success-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: rgba(0,0,0,0.10) 0 2px 16px;
padding: 48px 32px;
text-align: center;
animation: fadeUp 0.5s ease both;
}
.success-check {
width: 72px;
height: 72px;
border-radius: 50%;
background: linear-gradient(135deg, #00B894, #00a383);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.success-check svg { width: 32px; height: 32px; color: #fff; }
.booking-success-card h3 {
font-size: 26px;
font-weight: 700;
color: var(--body);
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.booking-success-card > p {
font-size: 15px;
font-weight: 300;
color: var(--muted);
margin-bottom: 28px;
line-height: 1.6;
}
.confirm-details {
background: var(--section-gray);
border-radius: var(--radius);
padding: 20px 24px;
text-align: left;
margin-bottom: 24px;
display: flex;
flex-direction: column;
gap: 10px;
}
.confirm-row {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
font-weight: 300;
color: var(--muted);
}
.confirm-row svg { width: 16px; height: 16px; flex-shrink: 0; color: #21759B; }
.confirm-row strong { font-weight: 600; color: var(--body); }
.btn-add-cal {
width: 100%;
height: 44px;
background: transparent;
border: 1.5px solid rgba(0,0,0,0.15);
border-radius: var(--radius);
font-family: var(--font);
font-size: 15px;
font-weight: 600;
color: var(--body);
cursor: pointer;
transition: background 0.2s, border-color 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-add-cal:hover { background: var(--section-gray); border-color: rgba(0,0,0,0.25); }
.video-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.video-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: var(--card-shadow);
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
cursor: pointer;
display: block;
}
.video-card:hover {
transform: translateY(-5px);
box-shadow: rgba(0,0,0,0.2) 0 12px 32px;
}
.video-thumb {
width: 100%;
aspect-ratio: 16 / 9;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.vt1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.vt2 { background: linear-gradient(135deg, #0f3460 0%, #533483 100%); }
.vt3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d5a2d 100%); }
.vt4 { background: linear-gradient(135deg, #4a2c82 0%, #6C5CE7 100%); }
.vt5 { background: linear-gradient(135deg, #0d4b52 0%, #1B6CA8 100%); }
.vt6 { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%); }
.video-person-initial {
position: absolute;
top: 16px;
left: 18px;
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255,255,255,0.18);
border: 1.5px solid rgba(255,255,255,0.35);
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 800;
color: rgba(255,255,255,0.9);
}
.video-duration-badge {
position: absolute;
bottom: 12px;
right: 12px;
background: rgba(0,0,0,0.6);
color: #fff;
font-size: 11px;
font-weight: 700;
padding: 3px 8px;
border-radius: 4px;
letter-spacing: 0.03em;
}
.video-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0);
transition: background 0.2s;
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.12); }
.play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 58px;
height: 58px;
border-radius: 50%;
background: rgba(255,255,255,0.95);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
z-index: 1;
}
.video-card:hover .play-btn {
transform: translate(-50%, -50%) scale(1.1);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.play-triangle {
width: 0;
height: 0;
border-style: solid;
border-width: 9px 0 9px 17px;
border-color: transparent transparent transparent #111;
margin-left: 3px;
}
.video-body {
padding: 18px 20px 22px;
}
.video-stars {
display: flex;
gap: 2px;
margin-bottom: 8px;
}
.video-stars span {
color: #FBBC04;
font-size: 13px;
}
.video-quote {
font-size: 14px;
font-weight: 300;
color: var(--muted);
line-height: 1.55;
font-style: italic;
margin-bottom: 14px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.video-client {
display: flex;
align-items: center;
gap: 10px;
padding-top: 14px;
border-top: 1px solid rgba(0,0,0,0.06);
}
.video-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 800;
color: #fff;
flex-shrink: 0;
}
.va1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.va2 { background: linear-gradient(135deg, #0f3460, #533483); }
.va3 { background: linear-gradient(135deg, #1e3a1e, #2d5a2d); }
.va4 { background: linear-gradient(135deg, #4a2c82, #6C5CE7); }
.va5 { background: linear-gradient(135deg, #0d4b52, #1B6CA8); }
.va6 { background: linear-gradient(135deg, #2d2d2d, #4a4a4a); }
.video-client-name {
font-size: 15px;
font-weight: 700;
color: var(--body);
}
.video-client-role {
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.google-block {
display: grid;
grid-template-columns: 300px 1fr;
gap: 56px;
align-items: start;
}
.google-rating-panel {
background: var(--white);
border-radius: var(--radius-card);
padding: 28px;
box-shadow: var(--card-shadow);
position: sticky;
top: 112px;
}
.google-logo-row {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 20px;
}
.google-g-logo {
font-size: 22px;
font-weight: 900;
letter-spacing: -1px;
line-height: 1;
}
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC05; }
.g-g { color: #34A853; }
.google-logo-label {
font-size: 15px;
font-weight: 600;
color: var(--body);
}
.google-big-num {
font-size: 64px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.04em;
line-height: 1;
margin-bottom: 6px;
}
.google-star-row {
display: flex;
align-items: center;
gap: 2px;
margin-bottom: 6px;
}
.google-star-row span {
color: #FBBC04;
font-size: 20px;
}
.google-review-count {
font-size: 14px;
font-weight: 300;
color: var(--muted);
margin-bottom: 20px;
}
.google-bars {
display: flex;
flex-direction: column;
gap: 8px;
padding-top: 16px;
border-top: 1px solid rgba(0,0,0,0.07);
}
.g-bar-row {
display: flex;
align-items: center;
gap: 8px;
}
.g-bar-label {
font-size: 12px;
font-weight: 600;
color: var(--muted);
width: 14px;
text-align: right;
flex-shrink: 0;
}
.g-bar-star {
color: #FBBC04;
font-size: 11px;
flex-shrink: 0;
}
.g-bar-track {
flex: 1;
height: 7px;
background: rgba(0,0,0,0.08);
border-radius: 4px;
overflow: hidden;
}
.g-bar-fill {
height: 100%;
background: #FBBC04;
border-radius: 4px;
}
.g-bar-count {
font-size: 12px;
font-weight: 300;
color: var(--muted);
width: 20px;
flex-shrink: 0;
}
.google-verified-badge {
display: flex;
align-items: center;
gap: 6px;
margin-top: 16px;
font-size: 12px;
font-weight: 300;
color: var(--muted);
}
.google-verified-badge svg { width: 14px; height: 14px; color: #34A853; }
.google-reviews-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.review-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 20px 22px;
box-shadow: var(--card-shadow);
border: 1px solid rgba(0,0,0,0.05);
transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
box-shadow: rgba(0,0,0,0.12) 0 6px 20px;
transform: translateY(-2px);
}
.review-header {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 12px;
}
.review-avatar {
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
font-weight: 800;
color: #fff;
flex-shrink: 0;
}
.rav1 { background: linear-gradient(135deg, #4285F4, #357AE8); }
.rav2 { background: linear-gradient(135deg, #EA4335, #C5221F); }
.rav3 { background: linear-gradient(135deg, #34A853, #1E8E3E); }
.rav4 { background: linear-gradient(135deg, #FBBC05, #F09300); }
.rav5 { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.rav6 { background: linear-gradient(135deg, #FF5722, #E64A19); }
.review-meta { flex: 1; min-width: 0; }
.review-name {
font-size: 15px;
font-weight: 700;
color: var(--body);
margin-bottom: 3px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.review-stars-row {
display: flex;
align-items: center;
gap: 1px;
}
.review-stars-row span { color: #FBBC04; font-size: 13px; }
.review-date {
font-size: 12px;
font-weight: 300;
color: rgba(0,0,0,0.35);
margin-left: auto;
white-space: nowrap;
flex-shrink: 0;
}
.review-text {
font-size: 14px;
font-weight: 300;
color: var(--body);
line-height: 1.65;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
.testimonials-masonry {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
align-items: start;
}
.testimonial-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 28px 28px 24px;
box-shadow: var(--card-shadow);
position: relative;
overflow: hidden;
transition: transform 0.2s, box-shadow 0.2s;
border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card:hover {
transform: translateY(-3px);
box-shadow: rgba(0,0,0,0.14) 0 8px 28px;
}
.quote-mark {
position: absolute;
top: 10px;
right: 18px;
font-size: 80px;
line-height: 1;
color: rgba(0,0,0,0.04);
font-family: Georgia, 'Times New Roman', serif;
font-weight: 900;
user-select: none;
pointer-events: none;
}
.t-stars {
display: flex;
gap: 2px;
margin-bottom: 14px;
}
.t-stars span { color: #FBBC04; font-size: 14px; }
.t-text {
font-size: 16px;
font-weight: 300;
color: var(--body);
line-height: 1.75;
font-style: italic;
margin-bottom: 22px;
position: relative;
z-index: 1;
}
.t-author {
display: flex;
align-items: center;
gap: 12px;
padding-top: 18px;
border-top: 1px solid rgba(0,0,0,0.07);
}
.t-avatar {
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 800;
color: #fff;
flex-shrink: 0;
}
.ta1  { background: linear-gradient(135deg, #0f3460, #533483); }
.ta2  { background: linear-gradient(135deg, #1e3a1e, #2d5a2d); }
.ta3  { background: linear-gradient(135deg, #1a6b8a, #21759B); }
.ta4  { background: linear-gradient(135deg, #7c1515, #c0392b); }
.ta5  { background: linear-gradient(135deg, #4a2c82, #6C5CE7); }
.ta6  { background: linear-gradient(135deg, #0d4b52, #1B6CA8); }
.ta7  { background: linear-gradient(135deg, #2d2d2d, #555555); }
.ta8  { background: linear-gradient(135deg, #5d0000, #912020); }
.ta9  { background: linear-gradient(135deg, #003d1f, #006633); }
.t-author-info { flex: 1; min-width: 0; }
.t-name {
font-size: 15px;
font-weight: 700;
color: var(--body);
margin-bottom: 2px;
}
.t-role {
font-size: 13px;
font-weight: 300;
color: var(--muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.flag-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
font-weight: 600;
color: var(--muted);
background: var(--section-gray);
padding: 4px 10px 4px 6px;
border-radius: 20px;
white-space: nowrap;
flex-shrink: 0;
}
.flag-badge .flag { font-size: 16px; line-height: 1; }
.t-section-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 40px;
}
.t-section-header h2 {
font-size: 36px;
font-weight: 300;
color: var(--body);
}
.t-section-header p {
font-size: 16px;
font-weight: 300;
color: var(--muted);
max-width: 320px;
text-align: right;
line-height: 1.5;
}
.process-hero-visual {
display: flex;
flex-direction: column;
gap: 12px;
}
.process-status-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 18px 20px;
box-shadow: var(--card-shadow);
border: 1px solid rgba(0,0,0,0.06);
}
.psc-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 14px;
}
.psc-title {
font-size: 14px;
font-weight: 700;
color: var(--body);
}
.psc-badge {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 3px 10px;
border-radius: 20px;
}
.psc-badge--active {
background: rgba(0,184,148,0.1);
color: #00B894;
}
.psc-badge--done {
background: rgba(33,117,155,0.1);
color: #21759B;
}
.psc-badge--next {
background: rgba(255,152,0,0.1);
color: #FF9800;
}
.psc-steps {
display: flex;
align-items: center;
gap: 0;
margin-bottom: 12px;
}
.psc-step-dot {
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 800;
flex-shrink: 0;
position: relative;
z-index: 1;
}
.psc-step-dot--done {
background: var(--nav-bg);
color: #fff;
}
.psc-step-dot--active {
background: #00B894;
color: #fff;
box-shadow: 0 0 0 4px rgba(0,184,148,0.2);
}
.psc-step-dot--future {
background: #e8e8e8;
color: #aaa;
}
.psc-step-line {
flex: 1;
height: 2px;
}
.psc-step-line--done   { background: var(--nav-bg); }
.psc-step-line--active { background: linear-gradient(90deg, var(--nav-bg), #e8e8e8); }
.psc-step-line--future { background: #e8e8e8; }
.psc-progress-label {
font-size: 13px;
font-weight: 300;
color: var(--muted);
margin-bottom: 6px;
}
.psc-progress-bar {
height: 6px;
background: rgba(0,0,0,0.08);
border-radius: 3px;
overflow: hidden;
}
.psc-progress-fill {
height: 100%;
border-radius: 3px;
background: linear-gradient(90deg, #21759B, #00B894);
}
.process-tools-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 16px 20px;
box-shadow: var(--card-shadow);
border: 1px solid rgba(0,0,0,0.06);
display: flex;
align-items: center;
gap: 14px;
}
.tools-card-label {
font-size: 13px;
font-weight: 700;
color: var(--muted);
letter-spacing: 0.04em;
text-transform: uppercase;
white-space: nowrap;
}
.tools-pill-row {
display: flex;
gap: 6px;
flex-wrap: wrap;
}
.tool-pill {
font-size: 11px;
font-weight: 700;
padding: 4px 10px;
border-radius: 20px;
background: var(--section-gray);
color: var(--muted);
border: 1px solid rgba(0,0,0,0.06);
}
.process-timeline {
position: relative;
display: flex;
flex-direction: column;
gap: 0;
}
.process-timeline::before {
content: '';
position: absolute;
top: 40px;
bottom: 40px;
left: 39px;
width: 2px;
background: linear-gradient(180deg,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.1) 5%,
rgba(0,0,0,0.1) 95%,
rgba(0,0,0,0) 100%
);
z-index: 0;
}
.timeline-step {
display: grid;
grid-template-columns: 80px 1fr;
gap: 32px;
padding: 0 0 64px;
position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--white);
border: 2px solid rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: 800;
color: var(--muted);
flex-shrink: 0;
position: relative;
z-index: 1;
transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.timeline-step:hover .timeline-num {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
box-shadow: 0 0 0 6px rgba(17,17,17,0.08);
}
.timeline-step--active .timeline-num {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.timeline-content {
padding-top: 16px;
}
.timeline-step-tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
background: var(--section-gray);
padding: 4px 12px;
border-radius: 20px;
margin-bottom: 12px;
}
.timeline-step-tag .tag-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--muted);
}
.tag-dot--green  { background: #00B894; }
.tag-dot--blue   { background: #21759B; }
.tag-dot--orange { background: #FF9800; }
.tag-dot--purple { background: #6C5CE7; }
.tag-dot--teal   { background: #00CEC9; }
.tag-dot--red    { background: #E17055; }
.timeline-step-title {
font-size: 32px;
font-weight: 300;
color: var(--body);
letter-spacing: -0.02em;
line-height: 1.15;
margin-bottom: 12px;
}
.timeline-step-body {
font-size: 18px;
font-weight: 300;
color: var(--muted);
line-height: 1.7;
max-width: 680px;
margin-bottom: 20px;
}
.step-details {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
}
.step-detail {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.5;
}
.step-detail-icon {
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(0,184,148,0.1);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.step-detail-icon svg {
width: 10px;
height: 10px;
color: #00B894;
}
.step-mini-card {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--white);
border: 1px solid rgba(0,0,0,0.08);
border-radius: var(--radius);
padding: 12px 16px;
font-size: 14px;
font-weight: 300;
color: var(--muted);
margin-top: 4px;
}
.step-mini-card strong { font-weight: 700; color: var(--body); }
.step-mini-card-icon { font-size: 22px; }
.step-tools-row {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin-top: 8px;
}
.step-tool-chip {
display: flex;
align-items: center;
gap: 5px;
font-size: 12px;
font-weight: 700;
color: var(--muted);
background: var(--section-gray);
border: 1px solid rgba(0,0,0,0.07);
padding: 5px 12px;
border-radius: 20px;
transition: background 0.2s;
}
.step-tool-chip:hover { background: #ebebeb; }
.step-tool-chip .chip-icon { font-size: 14px; }
.principles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.principle-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 28px 26px;
box-shadow: var(--card-shadow);
border: 1px solid rgba(0,0,0,0.05);
transition: transform 0.2s, box-shadow 0.2s;
}
.principle-card:hover {
transform: translateY(-3px);
box-shadow: rgba(0,0,0,0.12) 0 8px 24px;
}
.principle-icon {
font-size: 36px;
margin-bottom: 16px;
display: block;
}
.principle-title {
font-size: 20px;
font-weight: 700;
color: var(--body);
margin-bottom: 10px;
line-height: 1.2;
}
.principle-text {
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.7;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 0;
max-width: 760px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
width: 100%;
background: none;
border: none;
padding: 22px 0;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
cursor: pointer;
text-align: left;
font-family: var(--font);
font-size: 18px;
font-weight: 600;
color: var(--body);
transition: color 0.2s;
}
.faq-question:hover { color: #000; }
.faq-chevron {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--section-gray);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: background 0.2s, transform 0.3s;
}
.faq-chevron svg { width: 13px; height: 13px; color: var(--muted); }
.faq-item.open .faq-chevron {
transform: rotate(180deg);
background: var(--nav-bg);
}
.faq-item.open .faq-chevron svg { color: #fff; }
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
padding: 0 0 22px;
font-size: 16px;
font-weight: 300;
color: var(--muted);
line-height: 1.75;
}
.quote-shell {
max-width: 760px;
margin: 0 auto;
padding: 64px 20px 96px;
}
.quote-progress {
margin-bottom: 48px;
}
.qp-track {
display: flex;
align-items: center;
gap: 0;
margin-bottom: 14px;
}
.qp-step {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
z-index: 1;
}
.qp-dot {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid rgba(0,0,0,0.12);
background: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
color: rgba(0,0,0,0.3);
transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
flex-shrink: 0;
}
.qp-step.active  .qp-dot {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
box-shadow: 0 0 0 5px rgba(17,17,17,0.1);
}
.qp-step.done .qp-dot {
background: #00B894;
border-color: #00B894;
color: #fff;
}
.qp-line {
flex: 1;
height: 2px;
background: rgba(0,0,0,0.08);
transition: background 0.4s;
}
.qp-line.done { background: #00B894; }
.qp-labels {
display: flex;
justify-content: space-between;
padding: 0 2px;
}
.qp-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.04em;
color: rgba(0,0,0,0.3);
text-align: center;
width: 36px;
line-height: 1.4;
transition: color 0.3s;
}
.qp-label.active { color: var(--body); }
.qp-label.done   { color: #00B894; }
.quote-step {
display: none;
animation: fadeUp 0.4s ease both;
}
.quote-step.active { display: block; }
.qs-eyebrow {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 10px;
}
.qs-heading {
font-size: 40px;
font-weight: 300;
color: var(--body);
letter-spacing: -0.025em;
line-height: 1.1;
margin-bottom: 8px;
}
.qs-subheading {
font-size: 18px;
font-weight: 300;
color: var(--muted);
margin-bottom: 36px;
line-height: 1.5;
}
.quote-sub {
display: none;
}
.quote-sub.active { display: block; }
.service-select-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin-bottom: 40px;
}
.service-select-card {
border: 2px solid rgba(0,0,0,0.1);
border-radius: var(--radius-card);
padding: 22px 18px;
cursor: pointer;
transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
user-select: none;
position: relative;
background: var(--white);
}
.service-select-card:hover {
border-color: rgba(0,0,0,0.25);
transform: translateY(-2px);
box-shadow: rgba(0,0,0,0.08) 0 6px 20px;
}
.service-select-card.selected {
border-color: var(--nav-bg);
background: var(--nav-bg);
box-shadow: rgba(17,17,17,0.2) 0 6px 24px;
}
.service-select-card .ssc-check {
position: absolute;
top: 12px;
right: 12px;
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(255,255,255,0.25);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s;
}
.service-select-card.selected .ssc-check { opacity: 1; }
.ssc-check svg { width: 10px; height: 10px; color: #fff; }
.ssc-icon {
font-size: 32px;
margin-bottom: 12px;
display: block;
transition: transform 0.2s;
}
.service-select-card:hover .ssc-icon { transform: scale(1.1); }
.ssc-title {
font-size: 15px;
font-weight: 700;
color: var(--body);
margin-bottom: 4px;
transition: color 0.2s;
}
.service-select-card.selected .ssc-title { color: #fff; }
.ssc-desc {
font-size: 12px;
font-weight: 300;
color: var(--muted);
line-height: 1.4;
transition: color 0.2s;
}
.service-select-card.selected .ssc-desc { color: rgba(255,255,255,0.7); }
.qs-field {
margin-bottom: 28px;
}
.qs-label {
font-size: 16px;
font-weight: 600;
color: var(--body);
display: block;
margin-bottom: 12px;
}
.qs-label .qs-hint {
font-size: 13px;
font-weight: 300;
color: var(--muted);
margin-left: 6px;
}
.option-pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.option-pill {
padding: 10px 18px;
border: 2px solid rgba(0,0,0,0.1);
border-radius: 50px;
font-size: 14px;
font-weight: 600;
color: var(--body);
cursor: pointer;
user-select: none;
transition: border-color 0.18s, background 0.18s, color 0.18s;
background: var(--white);
}
.option-pill:hover:not(.selected) { border-color: rgba(0,0,0,0.28); }
.option-pill.selected {
border-color: var(--nav-bg);
background: var(--nav-bg);
color: #fff;
}
.option-pill.multi.selected {
border-color: #21759B;
background: #21759B;
color: #fff;
}
.yn-toggle {
display: flex;
gap: 10px;
}
.yn-btn {
width: 80px;
height: 44px;
border: 2px solid rgba(0,0,0,0.1);
border-radius: var(--radius);
font-family: var(--font);
font-size: 15px;
font-weight: 700;
cursor: pointer;
background: var(--white);
color: var(--body);
transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.yn-btn:hover:not(.selected) { border-color: rgba(0,0,0,0.28); }
.yn-btn.selected {
border-color: var(--nav-bg);
background: var(--nav-bg);
color: #fff;
}
.qs-input,
.qs-select,
.qs-textarea {
font-family: var(--font);
font-size: 16px;
font-weight: 300;
color: var(--body);
background: var(--white);
border: 2px solid rgba(0,0,0,0.12);
border-radius: var(--radius);
outline: none;
width: 100%;
transition: border-color 0.2s, box-shadow 0.2s;
}
.qs-input,
.qs-select { height: 52px; padding: 0 18px; }
.qs-textarea { padding: 16px 18px; min-height: 120px; resize: vertical; }
.qs-select {
appearance: none;
cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 18px center;
}
.qs-input:focus,
.qs-select:focus,
.qs-textarea:focus {
border-color: var(--nav-bg);
box-shadow: 0 0 0 4px rgba(17,17,17,0.07);
}
.qs-input.error,
.qs-textarea.error { border-color: #e74c3c; }
.qs-grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.budget-options {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.budget-card {
border: 2px solid rgba(0,0,0,0.1);
border-radius: var(--radius);
padding: 16px 12px;
cursor: pointer;
text-align: center;
user-select: none;
transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
background: var(--white);
}
.budget-card:hover:not(.selected) {
border-color: rgba(0,0,0,0.25);
transform: translateY(-2px);
}
.budget-card.selected {
border-color: var(--nav-bg);
background: var(--nav-bg);
}
.budget-card-amount {
font-size: 17px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.02em;
margin-bottom: 3px;
transition: color 0.18s;
}
.budget-card.selected .budget-card-amount { color: #fff; }
.budget-card-label {
font-size: 11px;
font-weight: 300;
color: var(--muted);
line-height: 1.3;
transition: color 0.18s;
}
.budget-card.selected .budget-card-label { color: rgba(255,255,255,0.7); }
.review-card {
background: var(--section-gray);
border-radius: var(--radius-card);
padding: 28px 32px;
margin-bottom: 28px;
}
.review-section-title {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.review-row {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
}
.review-row:last-child { margin-bottom: 0; }
.review-key {
font-weight: 600;
color: var(--muted);
min-width: 140px;
flex-shrink: 0;
}
.review-val {
font-weight: 300;
color: var(--body);
line-height: 1.5;
}
.review-edit-link {
font-size: 13px;
font-weight: 600;
color: var(--muted);
text-decoration: underline;
text-underline-offset: 2px;
cursor: pointer;
float: right;
transition: color 0.2s;
}
.review-edit-link:hover { color: var(--body); }
.btn-submit-quote {
width: 100%;
height: 56px;
background: var(--nav-bg);
color: #fff;
border: none;
border-radius: var(--radius);
font-family: var(--font);
font-size: 17px;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: background 0.2s, transform 0.15s;
letter-spacing: 0.01em;
}
.btn-submit-quote:hover { background: #222; transform: translateY(-1px); }
.quote-success {
display: none;
text-align: center;
padding: 80px 32px;
animation: fadeUp 0.5s ease both;
}
.quote-success.visible { display: block; }
.quote-success-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #00B894, #00a383);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
}
.quote-success-icon svg { width: 36px; height: 36px; color: #fff; }
.quote-success h2 {
font-size: 40px;
font-weight: 300;
color: var(--body);
letter-spacing: -0.025em;
margin-bottom: 12px;
}
.quote-success p {
font-size: 18px;
font-weight: 300;
color: var(--muted);
max-width: 440px;
margin: 0 auto 32px;
line-height: 1.6;
}
.qs-nav {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 40px;
padding-top: 28px;
border-top: 1px solid rgba(0,0,0,0.08);
}
.btn-qs-back {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font);
font-size: 16px;
font-weight: 300;
color: var(--muted);
background: none;
border: none;
cursor: pointer;
padding: 0;
transition: color 0.2s;
}
.btn-qs-back:hover { color: var(--body); }
.btn-qs-back svg { width: 18px; height: 18px; }
.btn-qs-next {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font);
font-size: 16px;
font-weight: 700;
color: #fff;
background: var(--nav-bg);
border: none;
border-radius: var(--radius);
height: 50px;
padding: 0 28px;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
}
.btn-qs-next:hover { background: #222; transform: translateY(-1px); }
.btn-qs-next:disabled {
background: rgba(0,0,0,0.12);
color: rgba(0,0,0,0.3);
cursor: not-allowed;
transform: none;
}
.btn-qs-next svg { width: 18px; height: 18px; }
.qs-step-count {
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.filter-bar {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.filter-btn {
display: inline-flex;
align-items: center;
gap: 7px;
height: 40px;
padding: 0 18px;
border-radius: 50px;
border: 2px solid rgba(0,0,0,0.1);
background: var(--white);
font-family: var(--font);
font-size: 14px;
font-weight: 700;
color: var(--muted);
cursor: pointer;
transition: border-color 0.18s, background 0.18s, color 0.18s;
user-select: none;
}
.filter-btn:hover:not(.active) {
border-color: rgba(0,0,0,0.25);
color: var(--body);
}
.filter-btn.active {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.filter-count {
font-size: 11px;
font-weight: 800;
background: rgba(255,255,255,0.2);
padding: 1px 7px;
border-radius: 20px;
line-height: 1.6;
}
.filter-btn:not(.active) .filter-count {
background: rgba(0,0,0,0.07);
color: var(--muted);
}
.results-count {
font-size: 15px;
font-weight: 300;
color: var(--muted);
margin-top: 8px;
}
.results-count strong { font-weight: 700; color: var(--body); }
.templates-section {
padding: 72px 0 0;
}
.templates-section:last-of-type {
padding-bottom: 96px;
}
.ts-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 32px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ts-header-left h2 {
font-size: 30px;
font-weight: 300;
color: var(--body);
letter-spacing: -0.02em;
margin-bottom: 4px;
}
.ts-header-left p {
font-size: 15px;
font-weight: 300;
color: var(--muted);
}
.ts-view-all {
font-size: 14px;
font-weight: 600;
color: var(--muted);
text-decoration: underline;
text-underline-offset: 3px;
cursor: pointer;
transition: color 0.2s;
white-space: nowrap;
}
.ts-view-all:hover { color: var(--body); }
.templates-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.tpl-card[data-hidden="true"] {
display: none;
}
.tpl-card {
background: var(--white);
border-radius: var(--radius-card);
box-shadow: var(--card-shadow);
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
border: 1px solid rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
}
.tpl-card:hover {
transform: translateY(-5px);
box-shadow: rgba(0,0,0,0.18) 0 12px 32px;
}
.tpl-thumb {
width: 100%;
aspect-ratio: 4 / 2.8;
position: relative;
overflow: hidden;
flex-shrink: 0;
}
.tpl-thumb-inner {
width: 100%;
height: 100%;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 14px;
position: relative;
}
.tpl-badge {
position: absolute;
top: 12px;
left: 12px;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
z-index: 2;
}
.tpl-badge--new      { background: #00B894; color: #fff; }
.tpl-badge--popular  { background: #FF9800; color: #fff; }
.tpl-badge--free     { background: #21759B; color: #fff; }
.tpl-badge--featured { background: #6C5CE7; color: #fff; }
.tpl-badge--pro      { background: #E17055; color: #fff; }
.tpl-price {
position: absolute;
top: 12px;
right: 12px;
font-size: 13px;
font-weight: 800;
background: rgba(0,0,0,0.65);
color: #fff;
padding: 4px 10px;
border-radius: 6px;
z-index: 2;
backdrop-filter: blur(4px);
}
.tpl-price--free { background: rgba(0,184,148,0.85); }
.tpl-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: background 0.25s;
z-index: 3;
}
.tpl-card:hover .tpl-overlay { background: rgba(0,0,0,0.45); }
.tpl-overlay-btn {
opacity: 0;
transform: translateY(8px);
transition: opacity 0.2s, transform 0.2s;
height: 38px;
padding: 0 18px;
border-radius: 50px;
border: none;
font-family: var(--font);
font-size: 13px;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
text-decoration: none;
}
.tpl-card:hover .tpl-overlay-btn {
opacity: 1;
transform: translateY(0);
}
.tpl-card:hover .tpl-overlay-btn:nth-child(2) { transition-delay: 0.05s; }
.tpl-overlay-btn--preview {
background: rgba(255,255,255,0.95);
color: var(--body);
}
.tpl-overlay-btn--buy {
background: var(--nav-bg);
color: #fff;
}
.tpl-overlay-btn--free-dl {
background: #00B894;
color: #fff;
}
.tpl-overlay-btn svg { width: 13px; height: 13px; }
.tpl-body {
padding: 16px 18px 18px;
flex: 1;
display: flex;
flex-direction: column;
}
.tpl-meta {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 8px;
}
.tpl-cat-tag {
font-size: 10px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 3px 9px;
border-radius: 20px;
}
.cat-html  { background: rgba(255,152,0,0.1);  color: #FF9800; }
.cat-wp    { background: rgba(33,117,155,0.1);  color: #21759B; }
.cat-3d    { background: rgba(108,92,231,0.1);  color: #6C5CE7; }
.cat-plugin{ background: rgba(0,184,148,0.1);   color: #00B894; }
.tpl-stack {
font-size: 11px;
font-weight: 300;
color: rgba(0,0,0,0.3);
}
.tpl-title {
font-size: 16px;
font-weight: 700;
color: var(--body);
margin-bottom: 5px;
line-height: 1.3;
}
.tpl-desc {
font-size: 13px;
font-weight: 300;
color: var(--muted);
line-height: 1.55;
flex: 1;
margin-bottom: 14px;
}
.tpl-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 12px;
border-top: 1px solid rgba(0,0,0,0.06);
}
.tpl-stat {
display: flex;
align-items: center;
gap: 5px;
font-size: 12px;
font-weight: 300;
color: rgba(0,0,0,0.35);
}
.tpl-stat svg { width: 13px; height: 13px; }
.tpl-stars {
display: flex;
align-items: center;
gap: 2px;
}
.tpl-stars span { font-size: 11px; color: #FBBC04; }
.tpl-stars .rating-num {
font-size: 11px;
font-weight: 600;
color: var(--muted);
margin-left: 2px;
}
.tt-h1  { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%); }
.tt-h2  { background: linear-gradient(145deg, #0f3460 0%, #533483 100%); }
.tt-h3  { background: linear-gradient(145deg, #1e3a1e 0%, #2d5a2d 100%); }
.tt-h4  { background: linear-gradient(145deg, #4a1942 0%, #8e3b7a 100%); }
.tt-h5  { background: linear-gradient(145deg, #0d1b2a 0%, #1a3a5c 100%); }
.tt-h6  { background: linear-gradient(145deg, #2a1a0a 0%, #6b3a1a 100%); }
.tt-wp1 { background: linear-gradient(145deg, #1a2a6c 0%, #b21f1f 70%, #fdbb2d 100%); }
.tt-wp2 { background: linear-gradient(145deg, #134e5e 0%, #71b280 100%); }
.tt-wp3 { background: linear-gradient(145deg, #232526 0%, #414345 100%); }
.tt-wp4 { background: linear-gradient(145deg, #3a1c71 0%, #d76d77 60%, #ffaf7b 100%); }
.tt-wp5 { background: linear-gradient(145deg, #0a0a0a 0%, #252525 100%); }
.tt-wp6 { background: linear-gradient(145deg, #005c97 0%, #363795 100%); }
.tt-3d1 { background: radial-gradient(ellipse at 30% 40%, #7B2FBE 0%, #0f0f1a 60%); }
.tt-3d2 { background: radial-gradient(ellipse at 70% 30%, #00d4ff 0%, #0a0a1a 60%); }
.tt-3d3 { background: radial-gradient(ellipse at 50% 50%, #ff6b6b 0%, #1a0a0a 60%); }
.tt-3d4 { background: radial-gradient(ellipse at 20% 60%, #00f5a0 0%, #0a1a0f 65%); }
.tt-p1  { background: linear-gradient(145deg, #1a3a1e 0%, #2d5a2d 100%); }
.tt-p2  { background: linear-gradient(145deg, #1a1a2e 0%, #21759B 100%); }
.tt-p3  { background: linear-gradient(145deg, #2a1a0a 0%, #d4580e 100%); }
.tt-p4  { background: linear-gradient(145deg, #4a2c82 0%, #6C5CE7 100%); }
.tt-p5  { background: linear-gradient(145deg, #0d3b4f 0%, #0984e3 100%); }
.tt-p6  { background: linear-gradient(145deg, #3a1a1a 0%, #c0392b 100%); }
.browser-mock {
width: 88%;
background: var(--white);
border-radius: 8px 8px 0 0;
box-shadow: 0 8px 32px rgba(0,0,0,0.35);
overflow: hidden;
}
.bm-bar {
display: flex;
align-items: center;
gap: 5px;
padding: 7px 10px;
background: #f0f0f0;
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bm-dot { width: 7px; height: 7px; border-radius: 50%; }
.bm-dot.r { background: #FF5F57; }
.bm-dot.y { background: #FFBD2E; }
.bm-dot.g { background: #28CA41; }
.bm-url {
flex: 1;
background: #e0e0e0;
height: 6px;
border-radius: 3px;
margin-left: 5px;
}
.bm-body { padding: 8px; }
.bm-hero-block {
height: 52px;
border-radius: 4px;
margin-bottom: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.06em;
color: rgba(255,255,255,0.7);
}
.bm-row { display: flex; gap: 5px; margin-bottom: 5px; }
.bm-block {
height: 6px;
border-radius: 2px;
background: rgba(0,0,0,0.1);
}
.bm-block.w30 { width: 30%; }
.bm-block.w50 { width: 50%; }
.bm-block.w70 { width: 70%; }
.bm-block.w100 { width: 100%; }
.bm-block.accent { background: rgba(0,0,0,0.2); }
.bm-card-row { display: flex; gap: 5px; margin-top: 6px; }
.bm-mini-card {
flex: 1;
height: 28px;
border-radius: 4px;
background: rgba(0,0,0,0.07);
}
.bm-nav {
display: flex;
justify-content: space-between;
padding: 5px 2px;
margin-bottom: 6px;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bm-nav-dot {
width: 28px;
height: 5px;
border-radius: 2px;
background: rgba(0,0,0,0.12);
}
.bm-nav-dot.active { background: rgba(0,0,0,0.3); }
.sphere-3d {
width: 80px;
height: 80px;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -55%);
animation: float3d 3s ease-in-out infinite;
}
.sphere-3d--violet {
background: radial-gradient(circle at 35% 35%, #d4a8ff, #7B2FBE 55%, #3a0f6b);
box-shadow: 0 20px 60px rgba(123,47,190,0.6), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--cyan {
background: radial-gradient(circle at 35% 35%, #b8f5ff, #00d4ff 55%, #003d52);
box-shadow: 0 20px 60px rgba(0,212,255,0.5), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--red {
background: radial-gradient(circle at 35% 35%, #ffb8b8, #ff6b6b 55%, #8b0000);
box-shadow: 0 20px 60px rgba(255,107,107,0.5), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.sphere-3d--green {
background: radial-gradient(circle at 35% 35%, #b8ffde, #00f5a0 55%, #00301e);
box-shadow: 0 20px 60px rgba(0,245,160,0.4), inset -10px -10px 20px rgba(0,0,0,0.3);
}
.ring-3d {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 30px;
border-radius: 50%;
transform: translate(-50%, -10%) rotateX(75deg);
}
.ring-3d--violet { border: 3px solid rgba(212,168,255,0.5); }
.ring-3d--cyan   { border: 3px solid rgba(184,245,255,0.5); }
.ring-3d--red    { border: 3px solid rgba(255,184,184,0.5); }
.ring-3d--green  { border: 3px solid rgba(184,255,222,0.5); }
.particle {
position: absolute;
border-radius: 50%;
animation: particleFloat 4s ease-in-out infinite;
}
.p1 { width: 6px;  height: 6px;  top: 20%; left: 15%; animation-delay: 0s; }
.p2 { width: 4px;  height: 4px;  top: 60%; left: 80%; animation-delay: 0.8s; }
.p3 { width: 8px;  height: 8px;  top: 75%; left: 20%; animation-delay: 1.6s; }
.p4 { width: 5px;  height: 5px;  top: 30%; left: 70%; animation-delay: 0.4s; }
.particle--violet { background: rgba(212,168,255,0.7); }
.particle--cyan   { background: rgba(184,245,255,0.7); }
.particle--red    { background: rgba(255,184,184,0.7); }
.particle--green  { background: rgba(184,255,222,0.7); }
.grid-floor {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40%;
background-image:
linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
background-size: 20px 20px;
-webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.tech-label-3d {
position: absolute;
bottom: 14px;
left: 14px;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}
@keyframes float3d {
0%, 100% { transform: translate(-50%, -55%); }
50%       { transform: translate(-50%, -62%); }
}
@keyframes particleFloat {
0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
50%       { transform: translateY(-8px) scale(1.2); opacity: 1; }
}
.plugin-icon-wrap {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.plugin-icon-bg {
width: 72px;
height: 72px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
transition: transform 0.3s;
}
.tpl-card:hover .plugin-icon-bg { transform: scale(1.12) translateY(-4px); }
.plugin-demo {
width: 82%;
background: rgba(255,255,255,0.08);
border-radius: 8px;
padding: 10px;
border: 1px solid rgba(255,255,255,0.12);
}
.plug-tabs-nav {
display: flex;
gap: 4px;
margin-bottom: 8px;
}
.plug-tab {
flex: 1;
height: 20px;
border-radius: 4px 4px 0 0;
background: rgba(255,255,255,0.08);
font-size: 7px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.4);
}
.plug-tab.active {
background: rgba(255,255,255,0.9);
color: #333;
}
.plug-tab-content {
background: rgba(255,255,255,0.05);
border-radius: 0 4px 4px 4px;
padding: 6px;
}
.plug-modal-backdrop {
background: rgba(0,0,0,0.3);
border-radius: 5px;
padding: 6px;
display: flex;
align-items: center;
justify-content: center;
}
.plug-modal-box {
background: var(--white);
border-radius: 5px;
padding: 8px;
width: 80%;
}
.plug-modal-title { height: 5px; background: #333; border-radius: 2px; width: 60%; margin-bottom: 6px; }
.plug-modal-line  { height: 3px; background: #e0e0e0; border-radius: 2px; margin-bottom: 3px; }
.plug-modal-btn   { height: 12px; background: #111; border-radius: 3px; width: 40%; margin-top: 6px; }
.plug-slider {
position: relative;
height: 40px;
border-radius: 5px;
overflow: hidden;
}
.plug-slide {
position: absolute;
inset: 0;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
font-size: 8px;
font-weight: 800;
color: rgba(255,255,255,0.7);
letter-spacing: 0.06em;
}
.plug-slide-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
color: rgba(255,255,255,0.6);
z-index: 1;
}
.plug-slide-arrow.l { left: 5px; }
.plug-slide-arrow.r { right: 5px; }
.plug-slider-dots {
display: flex;
justify-content: center;
gap: 4px;
margin-top: 5px;
}
.plug-sdot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.plug-sdot.active { background: rgba(255,255,255,0.8); }
.plug-form { display: flex; flex-direction: column; gap: 5px; }
.plug-field { height: 12px; border-radius: 3px; background: rgba(255,255,255,0.1); position: relative; }
.plug-field.ok::after  { content: '✓'; position:absolute; right: 4px; top: -1px; font-size: 8px; color: #00B894; }
.plug-field.err::after { content: '✕'; position:absolute; right: 4px; top: -1px; font-size: 8px; color: #e74c3c; }
.plug-field.err { border: 1px solid rgba(231,76,60,0.5); }
.plug-submit { height: 14px; background: #111; border-radius: 3px; margin-top: 2px; }
.billing-toggle-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
margin-bottom: 48px;
}
.billing-toggle {
display: flex;
align-items: center;
gap: 14px;
background: var(--white);
border: 1px solid rgba(0,0,0,0.1);
border-radius: 50px;
padding: 5px;
box-shadow: rgba(0,0,0,0.06) 0 2px 8px;
}
.billing-option {
font-size: 14px;
font-weight: 600;
color: var(--muted);
padding: 8px 22px;
border-radius: 50px;
cursor: pointer;
transition: background 0.2s, color 0.2s;
user-select: none;
white-space: nowrap;
}
.billing-option.active {
background: var(--nav-bg);
color: #fff;
}
.billing-save-badge {
font-size: 12px;
font-weight: 800;
letter-spacing: 0.06em;
color: #00B894;
background: rgba(0,184,148,0.1);
padding: 4px 12px;
border-radius: 20px;
border: 1px solid rgba(0,184,148,0.2);
display: none;
}
.billing-save-badge.visible { display: inline-block; }
.pricing-tabs-wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 56px;
flex-wrap: wrap;
}
.pricing-tab {
display: flex;
align-items: center;
gap: 7px;
height: 44px;
padding: 0 20px;
border-radius: 50px;
border: 2px solid rgba(0,0,0,0.1);
background: var(--white);
font-family: var(--font);
font-size: 14px;
font-weight: 700;
color: var(--muted);
cursor: pointer;
transition: all 0.2s;
user-select: none;
}
.pricing-tab:hover:not(.active) {
border-color: rgba(0,0,0,0.22);
color: var(--body);
}
.pricing-tab.active {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.pricing-tab-icon { font-size: 16px; }
.pricing-panel { display: none; }
.pricing-panel.active {
display: block;
animation: fadeUp 0.4s ease both;
}
.pricing-tier-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
align-items: start;
}
.pricing-tier-card {
border-radius: var(--radius-card);
padding: 36px 32px 32px;
border: 2px solid rgba(0,0,0,0.08);
background: var(--white);
position: relative;
transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-tier-card:hover {
transform: translateY(-4px);
box-shadow: rgba(0,0,0,0.12) 0 12px 32px;
}
.pricing-tier-card.featured {
background: var(--nav-bg);
border-color: var(--nav-bg);
transform: scale(1.03);
box-shadow: rgba(17,17,17,0.28) 0 16px 40px;
z-index: 1;
}
.pricing-tier-card.featured:hover {
transform: scale(1.03) translateY(-4px);
box-shadow: rgba(17,17,17,0.35) 0 20px 48px;
}
.ptc-recommended {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(90deg, #00B894, #00a383);
color: #fff;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 5px 16px;
border-radius: 20px;
white-space: nowrap;
}
.ptc-tier-name {
font-size: 12px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 14px;
}
.pricing-tier-card.featured .ptc-tier-name { color: rgba(255,255,255,0.55); }
.ptc-price-row {
display: flex;
align-items: flex-end;
gap: 4px;
margin-bottom: 4px;
}
.ptc-currency {
font-size: 22px;
font-weight: 800;
color: var(--body);
line-height: 1.3;
margin-bottom: 4px;
}
.pricing-tier-card.featured .ptc-currency { color: rgba(255,255,255,0.75); }
.ptc-amount {
font-size: 56px;
font-weight: 800;
color: var(--body);
letter-spacing: -0.04em;
line-height: 1;
}
.pricing-tier-card.featured .ptc-amount { color: #fff; }
.ptc-period {
font-size: 14px;
font-weight: 300;
color: var(--muted);
padding-bottom: 8px;
}
.pricing-tier-card.featured .ptc-period { color: rgba(255,255,255,0.5); }
.ptc-original-price {
font-size: 15px;
font-weight: 300;
color: rgba(0,0,0,0.3);
text-decoration: line-through;
margin-bottom: 8px;
min-height: 22px;
}
.pricing-tier-card.featured .ptc-original-price { color: rgba(255,255,255,0.35); }
.ptc-subtitle {
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.5;
margin-bottom: 28px;
padding-bottom: 24px;
border-bottom: 1px solid rgba(0,0,0,0.08);
min-height: 68px;
}
.pricing-tier-card.featured .ptc-subtitle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
.ptc-features {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.ptc-feature {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
font-weight: 300;
color: var(--body);
line-height: 1.45;
}
.pricing-tier-card.featured .ptc-feature { color: rgba(255,255,255,0.85); }
.ptc-check {
width: 18px;
height: 18px;
border-radius: 50%;
background: rgba(0,184,148,0.12);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.ptc-check svg { width: 9px; height: 9px; color: #00B894; }
.pricing-tier-card.featured .ptc-check {
background: rgba(255,255,255,0.15);
}
.pricing-tier-card.featured .ptc-check svg { color: #fff; }
.ptc-feature.muted-feature { opacity: 0.35; }
.ptc-cta {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
height: 50px;
border-radius: var(--radius);
font-family: var(--font);
font-size: 15px;
font-weight: 700;
cursor: pointer;
text-decoration: none;
transition: transform 0.15s, background 0.2s, border-color 0.2s;
border: 2px solid rgba(0,0,0,0.12);
background: transparent;
color: var(--body);
}
.ptc-cta:hover { border-color: rgba(0,0,0,0.28); background: rgba(0,0,0,0.03); transform: translateY(-1px); }
.pricing-tier-card.featured .ptc-cta {
background: #fff;
border-color: #fff;
color: var(--nav-bg);
}
.pricing-tier-card.featured .ptc-cta:hover { background: rgba(255,255,255,0.9); }
.ptc-timeline {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
color: var(--muted);
margin-top: 14px;
justify-content: center;
}
.ptc-timeline svg { width: 13px; height: 13px; flex-shrink: 0; }
.pricing-tier-card.featured .ptc-timeline { color: rgba(255,255,255,0.5); }
.comparison-wrap {
overflow-x: auto;
border-radius: var(--radius-card);
box-shadow: var(--card-shadow);
border: 1px solid rgba(0,0,0,0.07);
}
.comparison-table {
width: 100%;
border-collapse: collapse;
background: var(--white);
min-width: 640px;
}
.comparison-table thead tr {
border-bottom: 2px solid rgba(0,0,0,0.08);
}
.ct-header-cell {
padding: 24px 20px 20px;
text-align: center;
font-size: 14px;
font-weight: 700;
color: var(--body);
vertical-align: bottom;
}
.ct-header-cell:first-child {
text-align: left;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
width: 42%;
}
.ct-header-tier {
font-size: 20px;
font-weight: 800;
color: var(--body);
display: block;
margin-bottom: 2px;
}
.ct-header-price {
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.ct-header-cell.featured-col {
background: var(--nav-bg);
color: #fff;
}
.ct-header-cell.featured-col .ct-header-tier { color: #fff; }
.ct-header-cell.featured-col .ct-header-price { color: rgba(255,255,255,0.55); }
.comparison-table tbody tr {
border-bottom: 1px solid rgba(0,0,0,0.05);
transition: background 0.15s;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(0,0,0,0.015); }
.ct-section-row td {
padding: 16px 20px 8px;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
background: var(--section-gray);
}
.ct-feature-cell {
padding: 14px 20px;
font-size: 14px;
font-weight: 300;
color: var(--body);
line-height: 1.45;
}
.ct-val-cell {
padding: 14px 20px;
text-align: center;
font-size: 14px;
}
.ct-val-cell.featured-col {
background: rgba(17,17,17,0.03);
}
.ct-yes { color: #00B894; font-size: 18px; }
.ct-no  { color: rgba(0,0,0,0.2); font-size: 18px; }
.ct-txt {
font-size: 13px;
font-weight: 600;
color: var(--body);
}
.ct-txt-muted {
font-size: 13px;
font-weight: 300;
color: var(--muted);
}
.always-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.always-item {
background: var(--white);
border-radius: var(--radius-card);
padding: 24px 22px;
border: 1px solid rgba(0,0,0,0.07);
transition: transform 0.2s, box-shadow 0.2s;
}
.always-item:hover {
transform: translateY(-2px);
box-shadow: rgba(0,0,0,0.08) 0 6px 20px;
}
.always-icon {
font-size: 28px;
margin-bottom: 12px;
display: block;
}
.always-title {
font-size: 15px;
font-weight: 700;
color: var(--body);
margin-bottom: 6px;
}
.always-desc {
font-size: 13px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
}
.enterprise-band {
border-radius: var(--radius-card);
background: var(--nav-bg);
padding: 48px 56px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.enterprise-band h2 {
font-size: 32px;
font-weight: 300;
color: #fff;
letter-spacing: -0.02em;
margin-bottom: 8px;
}
.enterprise-band p {
font-size: 17px;
font-weight: 300;
color: rgba(255,255,255,0.6);
line-height: 1.55;
max-width: 480px;
}
.enterprise-actions {
display: flex;
flex-direction: column;
gap: 10px;
flex-shrink: 0;
}
.btn-enterprise-primary {
height: 50px;
padding: 0 32px;
border-radius: var(--radius);
background: #fff;
color: var(--nav-bg);
border: none;
font-family: var(--font);
font-size: 15px;
font-weight: 800;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
white-space: nowrap;
}
.btn-enterprise-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn-enterprise-ghost {
height: 50px;
padding: 0 32px;
border-radius: var(--radius);
background: transparent;
color: rgba(255,255,255,0.75);
border: 2px solid rgba(255,255,255,0.2);
font-family: var(--font);
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: border-color 0.2s, color 0.2s;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
white-space: nowrap;
}
.btn-enterprise-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.trust-row {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.trust-row-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 300;
color: var(--muted);
}
.trust-row-item svg { width: 18px; height: 18px; color: #00B894; }
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a,
.nav-links a.active {
color: #fff;
}
.footer-nav .current-menu-item > a,
.footer-nav .current-page-ancestor > a {
color: var(--body);
}
.portfolio-carousel-section {
padding: 96px 0;
background: var(--white);
}
.portfolio-carousel-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 48px;
padding-left: 16px;
border-left: 3px solid var(--body);
}
.portfolio-carousel-title {
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
color: var(--body);
line-height: 1.2;
letter-spacing: -0.02em;
}
.portfolio-carousel-nav {
display: flex;
gap: 12px;
}
.portfolio-nav-btn {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.15);
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--body);
transition: all 0.2s ease;
}
.portfolio-nav-btn:hover {
background: var(--body);
border-color: var(--body);
color: var(--white);
}
.portfolio-nav-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.portfolio-nav-btn:disabled:hover {
background: transparent;
border-color: rgba(0, 0, 0, 0.15);
color: var(--body);
}
.portfolio-carousel-wrapper {
overflow: hidden;
margin: 0 -20px;
padding: 0 20px;
}
.portfolio-carousel-track {
display: flex;
gap: 24px;
transition: transform 0.4s ease;
cursor: grab;
}
.portfolio-carousel-track:active {
cursor: grabbing;
}
.portfolio-carousel-track.is-dragging {
transition: none;
}
.portfolio-card {
flex: 0 0 calc(33.333% - 16px);
min-width: 320px;
display: block;
text-decoration: none;
}
.portfolio-card-image {
position: relative;
border-radius: var(--radius-card);
overflow: hidden;
aspect-ratio: 4 / 3;
background: #f5f5f5;
}
.portfolio-card-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-img {
transform: scale(1.05);
}
.portfolio-card-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #e8f4ff 0%, #f0f0ff 100%);
color: var(--muted);
}
.portfolio-placeholder-1 { background: linear-gradient(135deg, #e8ffe8 0%, #c8ffc8 100%); }
.portfolio-placeholder-2 { background: linear-gradient(135deg, #fff0e8 0%, #ffe0c8 100%); }
.portfolio-placeholder-3 { background: linear-gradient(135deg, #f0e8ff 0%, #e0c8ff 100%); }
.portfolio-placeholder-4 { background: linear-gradient(135deg, #e8f0ff 0%, #c8e0ff 100%); }
.portfolio-card-tags {
position: absolute;
bottom: 16px;
left: 16px;
right: 16px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.portfolio-tag {
background: rgba(255, 255, 255, 0.95);
color: var(--body);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
padding: 6px 12px;
border-radius: 4px;
backdrop-filter: blur(4px);
}
.portfolio-card-content {
padding: 20px 0 0;
}
.portfolio-card-subtitle {
font-size: 14px;
font-weight: 400;
color: var(--muted);
margin-bottom: 8px;
line-height: 1.4;
}
.portfolio-card-title {
font-size: 18px;
font-weight: 600;
color: var(--body);
line-height: 1.4;
transition: color 0.2s;
}
.portfolio-card:hover .portfolio-card-title {
color: #666;
}
.portfolio-carousel-section .view-all-wrap {
margin-top: 48px;
text-align: center;
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border: 1px solid var(--body);
border-radius: 6px;
font-size: 15px;
font-weight: 600;
color: var(--body);
background: transparent;
transition: all 0.2s ease;
text-decoration: none;
}
.btn-secondary:hover {
background: var(--body);
color: var(--white);
}
@media (max-width: 1024px) {
.portfolio-card {
flex: 0 0 calc(50% - 12px);
min-width: 280px;
}
}
@media (max-width: 768px) {
.portfolio-carousel-section {
padding: 64px 0;
}
.portfolio-carousel-header {
flex-direction: column;
align-items: flex-start;
gap: 24px;
padding-left: 12px;
}
.portfolio-carousel-nav {
align-self: flex-end;
}
.portfolio-card {
flex: 0 0 calc(85% - 12px);
min-width: 260px;
}
.portfolio-card-title {
font-size: 16px;
}
.portfolio-tag {
font-size: 10px;
padding: 5px 10px;
}
}
@media (max-width: 480px) {
.portfolio-card {
flex: 0 0 100%;
min-width: auto;
}
.portfolio-nav-btn {
width: 42px;
height: 42px;
}
}
.project-hero {
padding: 120px 0 64px;
background: var(--white);
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.project-subtitle {
font-size: 15px;
font-weight: 400;
color: var(--muted);
margin-bottom: 16px;
line-height: 1.5;
}
.project-title {
font-size: clamp(32px, 5vw, 52px);
font-weight: 700;
color: var(--body);
line-height: 1.15;
letter-spacing: -0.02em;
margin-bottom: 24px;
max-width: 800px;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 32px;
}
.project-tag {
background: var(--section-gray);
color: var(--body);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
padding: 8px 14px;
border-radius: 4px;
}
.project-meta {
display: flex;
flex-wrap: wrap;
gap: 40px;
padding-top: 24px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.project-meta-item {
display: flex;
flex-direction: column;
gap: 4px;
}
.project-meta-label {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
}
.project-meta-value {
font-size: 16px;
font-weight: 500;
color: var(--body);
}
.project-live-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 15px;
font-weight: 600;
color: var(--body);
transition: opacity 0.2s;
}
.project-live-link:hover {
opacity: 0.7;
}
.project-gallery-hero {
padding: 64px 0;
background: var(--section-gray);
}
.inner-wide {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}
.gallery-scroll-grid {
display: grid;
gap: 24px;
}
.gallery-cols-1 {
grid-template-columns: 1fr;
max-width: 900px;
margin: 0 auto;
}
.gallery-cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.gallery-cols-3 {
grid-template-columns: repeat(3, 1fr);
}
.gallery-cols-4 {
grid-template-columns: repeat(2, 1fr);
}
.gallery-scroll-item {
border-radius: var(--radius-card);
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
background: #fff;
}
.gallery-scroll-window {
height: 400px;
overflow: hidden;
position: relative;
}
.gallery-cols-1 .gallery-scroll-window {
height: 500px;
}
.gallery-scroll-img {
width: 100%;
height: auto;
display: block;
transition: transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
transform: translateY(0);
}
.gallery-scroll-window:hover .gallery-scroll-img {
transform: translateY(calc(-100% + 400px));
}
.gallery-cols-1 .gallery-scroll-window:hover .gallery-scroll-img {
transform: translateY(calc(-100% + 500px));
}
.gallery-scroll-item {
cursor: pointer;
}
.gallery-zoom-icon {
position: absolute;
top: 16px;
right: 16px;
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transform: scale(0.8);
transition: opacity 0.3s, transform 0.3s;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 10;
}
.gallery-zoom-icon svg {
stroke: var(--body);
}
.gallery-scroll-item:hover .gallery-zoom-icon {
opacity: 1;
transform: scale(1);
}
.project-gallery-grid {
display: grid;
gap: 24px;
}
.project-gallery-single {
grid-template-columns: 1fr;
}
.project-gallery-multi {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto auto;
}
.project-gallery-item {
border-radius: var(--radius-card);
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.project-gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.project-gallery-item-0 {
grid-column: span 2;
}
.project-content-grid {
display: grid;
grid-template-columns: 1fr 320px;
gap: 64px;
align-items: start;
}
.project-section {
margin-bottom: 48px;
}
.project-section:last-child {
margin-bottom: 0;
}
.project-section-title {
font-size: 24px;
font-weight: 700;
color: var(--body);
margin-bottom: 20px;
text-transform: lowercase;
}
.project-section-content {
font-size: 17px;
font-weight: 300;
color: var(--muted);
line-height: 1.7;
}
.project-section-content p {
margin-bottom: 16px;
}
.project-section-content p:last-child {
margin-bottom: 0;
}
.project-section-content ul,
.project-section-content ol {
margin: 16px 0;
padding-left: 24px;
}
.project-section-content li {
margin-bottom: 8px;
list-style: disc;
}
.project-section-content h2 {
font-size: 24px;
font-weight: 700;
color: var(--body);
margin: 40px 0 20px 0;
text-transform: lowercase;
}
.project-section-content h2:first-child {
margin-top: 0;
}
.project-section-content h3 {
font-size: 20px;
font-weight: 600;
color: var(--body);
margin: 32px 0 16px 0;
}
.project-section-content h4 {
font-size: 17px;
font-weight: 600;
color: var(--body);
margin: 24px 0 12px 0;
}
.project-section-content strong {
font-weight: 600;
color: var(--body);
}
.project-section-content a {
color: var(--body);
text-decoration: underline;
text-underline-offset: 3px;
}
.project-section-content a:hover {
opacity: 0.7;
}
.project-section-content blockquote {
border-left: 3px solid var(--body);
padding-left: 20px;
margin: 24px 0;
font-style: italic;
color: var(--muted);
}
.project-sidebar {
position: sticky;
top: 110px;
background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 16px;
padding: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
border: 1px solid rgba(0,0,0,0.04);
}
.project-sidebar .sidebar-block {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.project-sidebar .sidebar-block:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.project-sidebar .sidebar-value {
font-size: 15px;
font-weight: 500;
color: var(--body);
line-height: 1.5;
margin: 0;
}
.project-sidebar .sidebar-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 500;
color: var(--body);
text-decoration: none;
transition: color 0.2s;
}
.project-sidebar .sidebar-link:hover {
color: #0066cc;
}
.project-sidebar .sidebar-link svg {
opacity: 0.6;
transition: opacity 0.2s, transform 0.2s;
}
.project-sidebar .sidebar-link:hover svg {
opacity: 1;
transform: translate(2px, -2px);
}
.project-glance {
background: var(--section-gray);
border-radius: var(--radius-card);
padding: 32px;
}
.project-glance-title {
font-size: 18px;
font-weight: 700;
color: var(--body);
margin-bottom: 24px;
text-transform: lowercase;
}
.project-glance-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.project-glance-item {
display: flex;
flex-direction: column;
gap: 4px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.project-glance-item:last-child {
padding-bottom: 0;
border-bottom: none;
}
.project-glance-category {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
}
.project-glance-content {
font-size: 15px;
font-weight: 400;
color: var(--body);
line-height: 1.5;
}
.project-gallery-grid-more {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.project-gallery-more-item {
position: relative;
border-radius: var(--radius-card);
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}
.project-gallery-more-item:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.project-gallery-more-item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.4s;
}
.project-gallery-more-item:hover img {
transform: scale(1.03);
}
.gallery-more-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s;
}
.gallery-more-overlay svg {
stroke: #fff;
width: 32px;
height: 32px;
}
.project-gallery-more-item:hover .gallery-more-overlay {
opacity: 1;
}
.project-faqs-title {
font-size: 28px;
font-weight: 700;
color: var(--body);
margin-bottom: 32px;
text-transform: lowercase;
}
.project-faqs-list {
max-width: 800px;
}
.project-faq-item {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.project-faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 24px 0;
background: none;
border: none;
cursor: pointer;
text-align: left;
}
.project-faq-question span {
font-size: 17px;
font-weight: 600;
color: var(--body);
line-height: 1.4;
}
.project-faq-question .faq-chevron {
flex-shrink: 0;
color: var(--muted);
transition: transform 0.3s ease;
}
.project-faq-item.active .faq-chevron {
transform: rotate(180deg);
}
.project-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.project-faq-item.active .project-faq-answer {
max-height: 500px;
padding-bottom: 24px;
}
.project-faq-answer p {
font-size: 16px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
}
.project-cta-content {
max-width: 600px;
text-align: center;
margin: 0 auto;
}
.project-cta-title {
font-size: 36px;
font-weight: 700;
color: var(--body);
margin-bottom: 16px;
text-transform: lowercase;
}
.project-cta-text {
font-size: 17px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
margin-bottom: 32px;
}
.project-cta-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.project-related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
@media (max-width: 1024px) {
.project-content-grid {
grid-template-columns: 1fr;
gap: 48px;
}
.project-sidebar {
position: static;
}
.project-gallery-multi {
grid-template-columns: 1fr;
}
.project-gallery-item-0 {
grid-column: span 1;
}
.project-related-grid {
grid-template-columns: repeat(2, 1fr);
}
.gallery-cols-3,
.gallery-cols-4 {
grid-template-columns: repeat(2, 1fr);
}
.gallery-scroll-window {
height: 350px;
}
.gallery-scroll-window:hover .gallery-scroll-img {
transform: translateY(calc(-100% + 350px));
}
}
@media (max-width: 768px) {
.project-hero {
padding: 100px 0 48px;
}
.project-title {
font-size: 28px;
}
.project-meta {
gap: 24px;
}
.project-gallery-hero {
padding: 40px 0;
}
.inner-wide {
padding: 0 20px;
}
.project-gallery-grid-more {
grid-template-columns: 1fr;
}
.project-cta-title {
font-size: 28px;
}
.project-related-grid {
grid-template-columns: 1fr;
}
.gallery-cols-2,
.gallery-cols-3,
.gallery-cols-4 {
grid-template-columns: 1fr;
}
.gallery-scroll-window {
height: 300px;
}
.gallery-scroll-window:hover .gallery-scroll-img {
transform: translateY(calc(-100% + 300px));
}
.gallery-cols-1 .gallery-scroll-window {
height: 350px;
}
.gallery-cols-1 .gallery-scroll-window:hover .gallery-scroll-img {
transform: translateY(calc(-100% + 350px));
}
}
@media (max-width: 480px) {
.project-tags {
gap: 8px;
}
.project-tag {
font-size: 11px;
padding: 6px 10px;
}
.project-cta-buttons {
flex-direction: column;
}
.project-cta-buttons .btn-primary,
.project-cta-buttons .btn-secondary {
width: 100%;
justify-content: center;
}
}
.portfolio-section .filter-bar {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 48px;
justify-content: center;
}
.filter-btn {
padding: 10px 20px;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 6px;
background: transparent;
font-size: 14px;
font-weight: 500;
color: var(--body);
cursor: pointer;
transition: all 0.2s ease;
}
.filter-btn:hover {
border-color: var(--body);
}
.filter-btn.active {
background: var(--body);
border-color: var(--body);
color: var(--white);
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}
.portfolio-card-large {
display: block;
text-decoration: none;
opacity: 1;
transform: scale(1);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-card-large.hidden {
opacity: 0;
transform: scale(0.95);
pointer-events: none;
position: absolute;
visibility: hidden;
}
.portfolio-card-large .portfolio-card-image {
aspect-ratio: 4 / 3;
border-radius: var(--radius-card);
overflow: hidden;
position: relative;
background: #f5f5f5;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.portfolio-card-large .portfolio-card-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.portfolio-card-large:hover .portfolio-card-img {
transform: scale(1.05);
}
.portfolio-card-large .portfolio-card-content {
padding: 20px 0 0;
}
.portfolio-card-large .portfolio-card-subtitle {
font-size: 14px;
font-weight: 400;
color: var(--muted);
margin-bottom: 6px;
line-height: 1.4;
}
.portfolio-card-large .portfolio-card-title {
font-size: 20px;
font-weight: 600;
color: var(--body);
line-height: 1.3;
transition: color 0.2s;
}
.portfolio-card-large:hover .portfolio-card-title {
color: #555;
}
@media (max-width: 1024px) {
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
}
@media (max-width: 640px) {
.portfolio-section .filter-bar {
gap: 8px;
}
.filter-btn {
padding: 8px 16px;
font-size: 13px;
}
.portfolio-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.portfolio-card-large .portfolio-card-title {
font-size: 18px;
}
}
.portfolio-pagination {
margin-top: 64px;
display: flex;
justify-content: center;
}
.portfolio-pagination ul {
display: flex;
align-items: center;
gap: 8px;
list-style: none;
padding: 0;
margin: 0;
}
.portfolio-pagination li {
margin: 0;
}
.portfolio-pagination a,
.portfolio-pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 20px;
font-size: 14px;
font-weight: 600;
color: var(--text);
background: var(--white);
border-radius: var(--radius);
border: 1px solid #e5e5e5;
text-decoration: none;
transition: all 0.2s ease;
}
.portfolio-pagination a:hover {
background: var(--text);
color: var(--white);
border-color: var(--text);
}
.portfolio-pagination .current {
background: var(--text);
color: var(--white);
border-color: var(--text);
}
.portfolio-pagination .prev,
.portfolio-pagination .next {
padding: 12px 24px;
}
.portfolio-pagination .prev svg,
.portfolio-pagination .next svg {
width: 16px;
height: 16px;
}
.portfolio-pagination .dots {
border: none;
background: transparent;
padding: 12px 8px;
}
@media (max-width: 768px) {
.portfolio-pagination {
margin-top: 48px;
}
.portfolio-pagination ul {
flex-wrap: wrap;
gap: 6px;
}
.portfolio-pagination a,
.portfolio-pagination span {
padding: 10px 14px;
font-size: 13px;
}
.portfolio-pagination .prev,
.portfolio-pagination .next {
padding: 10px 16px;
}
}
.frameworks-section {
background: linear-gradient(135deg, #f5f0ff 0%, #e8f4ff 100%);
padding: 80px 0;
}
.frameworks-title {
text-align: center;
font-size: 14px;
font-weight: 700;
letter-spacing: 2px;
color: var(--muted);
margin-bottom: 48px;
}
.frameworks-grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
gap: 16px;
max-width: 1100px;
margin: 0 auto;
}
.framework-card {
background: var(--white);
border-radius: var(--radius-card);
padding: 24px 16px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: transform 0.2s, box-shadow 0.2s;
}
.framework-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.framework-logo {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
}
.framework-logo svg {
width: 100%;
height: 100%;
object-fit: contain;
}
.framework-name {
font-size: 13px;
font-weight: 600;
color: var(--body);
text-align: center;
white-space: nowrap;
}
@media (max-width: 1024px) {
.frameworks-grid {
grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 640px) {
.frameworks-section {
padding: 60px 20px;
}
.frameworks-grid {
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.framework-card {
padding: 16px 12px;
}
.framework-logo {
width: 36px;
height: 36px;
}
.framework-name {
font-size: 11px;
}
}
@media (max-width: 400px) {
.frameworks-grid {
grid-template-columns: repeat(2, 1fr);
}
}
body.admin-bar .navbar {
top: 32px;
}
@media screen and (max-width: 782px) {
body.admin-bar .navbar {
top: 46px;
}
}
.pagination {
display: flex;
justify-content: center;
gap: 8px;
margin: 48px 0;
}
.pagination .nav-links {
display: flex;
gap: 8px;
}
.pagination a,
.pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 12px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
color: var(--body);
background: var(--white);
border: 1px solid rgba(0, 0, 0, 0.08);
text-decoration: none;
transition: all 0.2s ease;
}
.pagination a:hover {
background: var(--section-gray);
border-color: rgba(0, 0, 0, 0.12);
}
.pagination .current {
background: var(--body);
color: var(--white);
border-color: var(--body);
}
.alignleft {
float: left;
margin: 0 1.5em 1em 0;
}
.alignright {
float: right;
margin: 0 0 1em 1.5em;
}
.aligncenter {
display: block;
margin: 1em auto;
}
.wp-caption {
max-width: 100%;
margin-bottom: 1em;
}
.wp-caption-text {
font-size: 14px;
color: var(--muted);
font-style: italic;
margin-top: 0.5em;
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 14px;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
.wp-block-image {
margin-bottom: 1.5em;
}
.wp-block-image img {
max-width: 100%;
height: auto;
}
.wp-block-quote {
border-left: 4px solid var(--body);
padding-left: 1.5em;
margin: 1.5em 0;
font-style: italic;
}
.wp-block-quote cite {
display: block;
margin-top: 0.5em;
font-size: 14px;
font-style: normal;
color: var(--muted);
}
.wp-block-code {
background: var(--section-gray);
padding: 1.5em;
border-radius: 8px;
overflow-x: auto;
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
font-size: 14px;
}
.wp-block-separator {
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.08);
margin: 2em 0;
}
.wp-block-table {
width: 100%;
margin-bottom: 1.5em;
border-collapse: collapse;
}
.wp-block-table td,
.wp-block-table th {
padding: 0.75em 1em;
border: 1px solid rgba(0, 0, 0, 0.08);
text-align: left;
}
.wp-block-table th {
background: var(--section-gray);
font-weight: 600;
}
.hero-cta-center {
position: absolute;
bottom: 1px;
left: 50%;
transform: translateX(-50%);
z-index: 20;
pointer-events: auto;
}
.hero-cta-center a.btn-primary {
padding: 5px 10px;
}
.form-footer-note {
text-align: center;
margin-top: 32px;
}
.form-response-time {
font-size: 15px;
color: var(--muted);
margin-bottom: 8px;
}
.form-booking-link {
font-size: 15px;
color: var(--muted);
}
.form-booking-link a {
font-weight: 600;
text-decoration: underline;
}
.card[data-hidden="true"] {
display: none;
}
.portfolio-section .filter-bar {
margin-bottom: 32px;
}
.page-hero-grid--single {
grid-template-columns: 1fr;
max-width: 680px;
}
.video-testimonials-section {
padding: 80px 0;
background: var(--gray-bg);
}
.video-testimonials-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-top: 48px;
align-items: start;
}
.video-testimonials-grid--single {
grid-template-columns: 1fr;
justify-items: center;
}
.video-testimonials-grid--single .video-card-large {
width: 100%;
max-width: 360px;
}
.video-card-large {
position: relative;
border-radius: 24px;
overflow: hidden;
cursor: pointer;
box-shadow: 0 12px 40px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card-large:hover {
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.video-card-large img {
width: 100%;
height: auto;
aspect-ratio: 3/4;
object-fit: cover;
display: block;
}
.video-card-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 24px;
background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.video-card-question {
color: #fff;
font-size: 28px;
font-weight: 700;
line-height: 1.3;
text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.video-play-btn-large {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
width: 64px;
height: 64px;
background: #8b5cf6;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
transition: transform 0.2s, box-shadow 0.2s;
}
.video-play-btn-large svg {
width: 28px;
height: 28px;
color: #fff;
}
.video-card-large:hover .video-play-btn-large {
transform: translateX(-50%) scale(1.1);
box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}
.video-cards-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.video-card-small {
position: relative;
border-radius: 16px;
overflow: hidden;
cursor: pointer;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card-small:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.video-card-small img {
width: 100%;
height: auto;
aspect-ratio: 4/5;
object-fit: cover;
display: block;
}
.video-play-btn-small {
position: absolute;
bottom: 12px;
right: 12px;
width: 32px;
height: 32px;
background: #ef4444;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
transition: transform 0.2s;
}
.video-play-btn-small svg {
width: 16px;
height: 16px;
color: #fff;
}
.video-card-small:hover .video-play-btn-small {
transform: scale(1.1);
}
.video-popup-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.9);
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
padding: 40px;
}
.video-popup-overlay.active {
display: flex;
}
.video-popup-content {
position: relative;
width: 100%;
max-width: 900px;
}
.video-popup-close {
position: absolute;
top: -40px;
right: 0;
width: 36px;
height: 36px;
background: transparent;
border: none;
color: #fff;
font-size: 32px;
cursor: pointer;
opacity: 0.7;
transition: opacity 0.2s;
}
.video-popup-close:hover {
opacity: 1;
}
.video-popup-iframe {
position: relative;
width: 100%;
aspect-ratio: 16/9;
background: #000;
border-radius: 12px;
overflow: hidden;
}
.video-popup-iframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (max-width: 900px) {
.video-testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.video-card-large {
max-width: 400px;
margin: 0 auto;
}
.video-card-question {
font-size: 22px;
}
.video-popup-overlay {
padding: 20px;
}
}
@media (max-width: 480px) {
.video-testimonials-section {
padding: 60px 0;
}
.video-cards-grid {
gap: 12px;
}
.video-card-question {
font-size: 18px;
}
.video-play-btn-large {
width: 52px;
height: 52px;
}
.video-play-btn-large svg {
width: 22px;
height: 22px;
}
}
.review-carousel-wrapper {
margin-top: 60px;
margin-bottom: 40px;
overflow: hidden;
position: relative;
}
.review-carousel-wrapper::before,
.review-carousel-wrapper::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 80px;
z-index: 2;
pointer-events: none;
}
.review-carousel-wrapper::before {
left: 0;
background: linear-gradient(to right, var(--gray-bg) 0%, transparent 100%);
}
.review-carousel-wrapper::after {
right: 0;
background: linear-gradient(to left, var(--gray-bg) 0%, transparent 100%);
}
.review-carousel-row {
display: flex;
margin-bottom: 16px;
overflow: hidden;
}
.review-carousel-row:last-child {
margin-bottom: 0;
}
.review-carousel-track {
display: flex;
gap: 16px;
animation: scrollLeft 40s linear infinite;
width: max-content;
}
.review-carousel-row[data-direction="right"] .review-carousel-track {
animation: scrollRight 40s linear infinite;
}
.review-carousel-row:hover .review-carousel-track {
animation-play-state: paused;
}
@keyframes scrollLeft {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes scrollRight {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
}
.review-card-mini {
flex-shrink: 0;
width: 340px;
background: var(--white);
border-radius: 16px;
padding: 24px;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
transition: transform 0.3s, box-shadow 0.3s;
}
.review-card-mini:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.review-quote-icon {
font-size: 48px;
font-weight: 700;
line-height: 1;
color: #e0e0e0;
margin-bottom: 8px;
font-family: Georgia, serif;
}
.review-card-text {
font-size: 14px;
line-height: 1.6;
color: var(--body);
margin-bottom: 20px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.review-card-author {
display: flex;
align-items: center;
gap: 12px;
}
.review-card-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 600;
color: #fff;
flex-shrink: 0;
}
.review-card-avatar.rca-blue { background: #4285f4; }
.review-card-avatar.rca-red { background: #ea4335; }
.review-card-avatar.rca-green { background: #34a853; }
.review-card-avatar.rca-yellow { background: #fbbc04; color: #333; }
.review-card-avatar.rca-purple { background: #673ab7; }
.review-card-avatar.rca-orange { background: #ff7043; }
.review-card-avatar.rca-pink { background: #e91e63; }
.review-card-avatar.rca-teal { background: #009688; }
.review-card-avatar.rca-indigo { background: #3f51b5; }
.review-card-avatar.rca-cyan { background: #00bcd4; }
.review-card-avatar.rca-lime { background: #8bc34a; }
.review-card-avatar.rca-rose { background: #f06292; }
.review-card-info {
flex: 1;
min-width: 0;
}
.review-card-name {
display: block;
font-size: 14px;
font-weight: 600;
color: var(--body);
line-height: 1.3;
}
.review-card-role {
display: block;
font-size: 12px;
color: var(--muted);
line-height: 1.3;
}
.review-source-icon {
width: 20px;
height: 20px;
flex-shrink: 0;
opacity: 0.7;
}
@media (max-width: 768px) {
.review-card-mini {
width: 280px;
padding: 20px;
}
.review-carousel-wrapper::before,
.review-carousel-wrapper::after {
width: 40px;
}
.review-carousel-track {
gap: 12px;
}
}
@media (max-width: 480px) {
.review-card-mini {
width: 260px;
padding: 16px;
}
.review-quote-icon {
font-size: 36px;
}
.review-card-text {
font-size: 13px;
}
}
.single-solution .section--hero {
padding: 50px 0 40px;
}
.single-solution .section {
padding: 50px 0;
}
.solution-hero {
width: 100%;
}
.solution-hero .section-cat-label {
margin-bottom: 8px;
}
.solution-hero .page-title {
font-size: clamp(28px, 3.5vw, 36px);
font-weight: 700;
line-height: 1.25;
margin-bottom: 14px;
}
.solution-hero .lead {
font-size: 16px;
line-height: 1.6;
color: var(--muted);
max-width: 700px;
}
.solution-hero .hero-cta-row {
margin-top: 20px;
}
.solution-hero .btn-primary,
.solution-hero .btn-ghost {
height: 44px;
font-size: 14px;
padding: 0 20px;
}
.single-solution .section-heading {
font-size: 24px;
margin-bottom: 24px;
}
.service-breadcrumb {
font-size: 12px;
color: var(--muted);
margin-bottom: 16px;
}
.service-breadcrumb a {
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.service-breadcrumb a:hover {
color: var(--body);
}
.service-breadcrumb .sep {
margin: 0 10px;
opacity: 0.5;
}
.solution-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 50px;
align-items: start;
}
@media (max-width: 900px) {
.solution-layout {
grid-template-columns: 1fr;
gap: 32px;
}
}
.solution-content {
min-width: 0;
}
.solution-sidebar {
position: sticky;
top: 110px;
background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 16px;
padding: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
border: 1px solid rgba(0,0,0,0.04);
}
.sidebar-block {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-block:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.sidebar-label {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--muted);
margin-bottom: 10px;
}
.sidebar-cat-btn {
display: inline-block;
padding: 8px 14px;
background: linear-gradient(135deg, #333 0%, #111 100%);
color: #fff;
font-size: 12px;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-cat-btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sidebar-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.sidebar-tag {
display: inline-block;
padding: 5px 10px;
background: #fff;
border: 1px solid rgba(0,0,0,0.08);
color: var(--body);
font-size: 12px;
font-weight: 500;
border-radius: 4px;
text-decoration: none;
transition: all 0.2s;
}
.sidebar-tag:hover {
border-color: var(--body);
background: var(--body);
color: #fff;
transform: translateY(-1px);
}
.sidebar-list {
list-style: none;
padding: 0;
margin: 0;
}
.sidebar-list li {
font-size: 13px;
color: var(--body);
padding: 5px 0;
padding-left: 18px;
position: relative;
}
.sidebar-list li::before {
content: '✓';
position: absolute;
left: 0;
color: #00B894;
font-size: 11px;
font-weight: 700;
}
.sidebar-cta {
background: linear-gradient(135deg, #111 0%, #222 100%);
padding: 18px;
border-radius: 10px;
text-align: center;
}
.sidebar-cta p {
font-size: 13px;
color: rgba(255,255,255,0.8);
margin-bottom: 12px;
}
.sidebar-cta .btn-primary {
background: #fff;
color: #111;
border-color: #fff;
font-size: 13px;
height: 42px;
padding: 0 20px;
}
.sidebar-cta .btn-primary:hover {
background: rgba(255,255,255,0.9);
transform: translateY(-1px);
}
.sidebar-cta .btn-primary svg {
stroke: #111;
}
.btn-full {
width: 100%;
justify-content: center;
}
.solution-content-text {
font-size: 15px;
line-height: 1.65;
color: var(--body);
}
.solution-content-text p {
margin-bottom: 0.85em;
}
.solution-content-text p:last-child {
margin-bottom: 0;
}
.solution-content-text h2,
.solution-content-text h3,
.solution-content-text h4 {
margin-top: 1.1em;
margin-bottom: 0.35em;
font-weight: 700;
color: var(--body);
}
.solution-content-text h2 {
font-size: 18px;
}
.solution-content-text h3 {
font-size: 16px;
}
.solution-content-text h4 {
font-size: 14px;
}
.solution-content-text ul,
.solution-content-text ol {
margin: 0.5em 0;
padding-left: 1.1em;
}
.solution-content-text li {
margin-bottom: 0.3em;
line-height: 1.55;
}
.solution-content-text li:last-child {
margin-bottom: 0;
}
.solution-content-text strong {
font-weight: 700;
color: var(--body);
}
.solution-content-text a {
color: var(--body);
text-decoration: underline;
text-underline-offset: 3px;
}
.solution-content-text a:hover {
color: var(--muted);
}
.includes-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
@media (max-width: 768px) {
.includes-grid {
grid-template-columns: 1fr;
}
}
.include-item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 20px;
background: var(--white);
border-radius: var(--radius);
border: 1px solid rgba(0,0,0,0.07);
transition: border-color 0.2s, box-shadow 0.2s;
}
.include-item:hover {
border-color: rgba(0,0,0,0.14);
box-shadow: rgba(0,0,0,0.06) 0 4px 16px;
}
.include-check {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(0,184,148,0.1);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.include-check svg {
width: 14px;
height: 14px;
color: #00B894;
stroke: #00B894;
}
.include-text h4 {
font-size: 16px;
font-weight: 700;
color: var(--body);
margin: 0 0 4px 0;
}
.include-text p {
font-size: 14px;
font-weight: 300;
color: var(--muted);
line-height: 1.5;
margin: 0;
}
.process-section h2 {
font-size: 24px;
font-weight: 700;
color: var(--body);
margin-bottom: 32px;
text-align: center;
}
.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
position: relative;
}
.process-steps::before {
content: '';
position: absolute;
top: 28px;
left: calc(12.5% + 14px);
right: calc(12.5% + 14px);
height: 2px;
background: rgba(0,0,0,0.08);
z-index: 0;
}
@media (max-width: 992px) {
.process-steps {
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.process-steps::before {
display: none;
}
}
@media (max-width: 576px) {
.process-steps {
grid-template-columns: 1fr;
}
}
.process-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 16px;
position: relative;
z-index: 1;
}
.step-num {
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--white);
border: 2px solid rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
font-weight: 700;
color: var(--body);
margin-bottom: 20px;
transition: background 0.2s, border-color 0.2s, color 0.2s;
position: relative;
z-index: 1;
}
.process-step:hover .step-num {
background: var(--nav-bg);
border-color: var(--nav-bg);
color: #fff;
}
.step-title {
font-size: 17px;
font-weight: 700;
color: var(--body);
margin-bottom: 8px;
}
.step-desc {
font-size: 14px;
font-weight: 300;
color: var(--muted);
line-height: 1.6;
}
.related-section h2 {
font-size: 24px;
font-weight: 700;
margin-bottom: 24px;
}
.service-cta {
text-align: center;
max-width: 550px;
margin: 0 auto;
padding: 20px 0;
}
.service-cta h2 {
font-size: 24px;
font-weight: 700;
margin-bottom: 12px;
}
.service-cta p {
font-size: 15px;
color: var(--muted);
margin-bottom: 24px;
line-height: 1.5;
}
.page-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
@media (max-width: 768px) {
.page-hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.service-hero-visual {
order: -1;
}
}
.section-heading {
font-size: 28px;
font-weight: 700;
margin-bottom: 32px;
}
.solution-content-text .wp-block-list {
list-style: disc;
padding-left: 1.5em;
}
.solution-content-text .wp-block-list li {
margin-bottom: 0.75em;
}
.solution-content-text > .wp-block-group,
.solution-content-text > .wp-block-columns {
margin-bottom: 1.5em;
}
.solution-content-text ul {
list-style-type: disc;
}
.solution-content-text ol {
list-style-type: decimal;
}
.solution-content-text ul ul {
list-style-type: circle;
}
.solution-content-text ul ul ul {
list-style-type: square;
}
.gallery-lightbox {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
}
.gallery-lightbox.active {
opacity: 1;
visibility: visible;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 20px;
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, transform 0.2s;
z-index: 10;
}
.lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
.lightbox-close svg {
stroke: #fff;
}
.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 52px;
height: 52px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, transform 0.2s;
z-index: 10;
}
.lightbox-nav:hover {
background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav:active {
transform: translateY(-50%) scale(0.95);
}
.lightbox-nav svg {
stroke: #fff;
}
.lightbox-prev {
left: 20px;
}
.lightbox-next {
right: 20px;
}
.lightbox-content {
max-width: calc(100vw - 160px);
max-height: calc(100vh - 120px);
display: flex;
align-items: center;
justify-content: center;
}
.lightbox-content img {
max-width: 100%;
max-height: calc(100vh - 120px);
object-fit: contain;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
transform: scale(0.95);
opacity: 0;
transition: opacity 0.3s ease;
cursor: default;
user-select: none;
-webkit-user-drag: none;
}
.lightbox-content img.is-zoomed {
cursor: grab;
}
.lightbox-content img.is-panning {
cursor: grabbing;
}
.gallery-lightbox.active .lightbox-content img {
transform: scale(1);
opacity: 1;
}
.lightbox-controls {
position: absolute;
bottom: 24px;
right: 24px;
display: flex;
gap: 8px;
z-index: 10;
}
.lightbox-zoom-btn {
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, transform 0.2s;
}
.lightbox-zoom-btn:hover {
background: rgba(255, 255, 255, 0.2);
}
.lightbox-zoom-btn:active {
transform: scale(0.95);
}
.lightbox-zoom-btn svg {
stroke: #fff;
}
.lightbox-zoom-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.lightbox-zoom-level {
display: flex;
align-items: center;
padding: 0 12px;
background: rgba(255, 255, 255, 0.1);
border-radius: 22px;
font-size: 13px;
font-weight: 500;
color: rgba(255, 255, 255, 0.8);
min-width: 60px;
justify-content: center;
}
.lightbox-counter {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
letter-spacing: 0.05em;
}
@media (max-width: 768px) {
.lightbox-content {
max-width: calc(100vw - 40px);
}
.lightbox-nav {
width: 44px;
height: 44px;
}
.lightbox-prev {
left: 10px;
}
.lightbox-next {
right: 10px;
}
.lightbox-close {
top: 10px;
right: 10px;
width: 40px;
height: 40px;
}
.lightbox-controls {
bottom: 16px;
right: 16px;
gap: 6px;
}
.lightbox-zoom-btn {
width: 38px;
height: 38px;
}
.lightbox-zoom-level {
padding: 0 10px;
font-size: 12px;
min-width: 50px;
}
.lightbox-counter {
bottom: 16px;
}
}
@media (max-width: 480px) {
.lightbox-controls {
display: none;
}
}
.mobile-menu-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
width: 44px;
height: 44px;
background: transparent;
border: none;
cursor: pointer;
padding: 10px;
z-index: 110;
}
.hamburger-line {
display: block;
width: 24px;
height: 2px;
background: #fff;
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--nav-bg);
z-index: 99;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
.mobile-menu {
display: flex;
flex-direction: column;
align-items: center;
gap: 24px;
padding: 20px;
}
.mobile-menu a {
color: rgba(255,255,255,0.75);
font-size: 28px;
font-weight: 400;
text-transform: lowercase;
transition: color 0.2s ease;
letter-spacing: 0.02em;
}
.mobile-menu a:hover,
.mobile-menu a.active {
color: #fff;
}
.mobile-menu-social {
display: flex;
gap: 20px;
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-social a {
color: rgba(255,255,255,0.6);
transition: color 0.2s ease;
}
.mobile-menu-social a:hover {
color: #fff;
}
body.mobile-menu-open {
overflow: hidden;
}
@media (max-width: 1024px) {
.navbar-container {
padding: 0 24px;
}
.nav-links {
gap: 24px;
}
.nav-social {
gap: 14px;
}
.inner {
padding: 0 24px;
}
.section {
padding: 72px 0;
}
.section--hero {
padding: 64px 0 48px;
}
.footer-container {
padding: 32px 24px;
}
.footer-nav {
gap: 20px;
}
}
@media (max-width: 900px) {
.nav-links,
.nav-social {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.navbar {
height: 72px;
}
.navbar-container {
justify-content: space-between;
}
.nav-logo-icon {
width: 50px;
height: 50px;
}
.nav-logo-name {
font-size: 16px;
}
.nav-logo-title {
font-size: 11px;
}
.page-content {
margin-top: 72px;
}
.page-title {
font-size: clamp(48px, 10vw, 72px);
}
.page-hero-grid {
grid-template-columns: 1fr;
gap: 32px;
}
}
@media (max-width: 768px) {
.inner {
padding: 0 20px;
}
.section {
padding: 56px 0;
}
.section--hero {
padding: 48px 0 40px;
}
.page-title {
font-size: clamp(40px, 12vw, 56px);
margin-bottom: 16px;
}
.lead {
font-size: 20px;
}
.body-text {
font-size: 16px;
}
.footer-container {
flex-direction: column;
gap: 16px;
text-align: center;
padding: 28px 20px;
}
.footer-nav {
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}
.footer-copy,
.footer-nav a {
font-size: 15px;
}
.back-to-top {
width: 40px;
height: 40px;
top: -20px;
}
.section-label {
margin-bottom: 32px;
}
.section-label span {
font-size: 12px;
}
}
@media (max-width: 480px) {
.navbar {
height: 64px;
}
.navbar-container {
padding: 0 16px;
}
.nav-logo-icon {
width: 44px;
height: 44px;
}
.nav-logo-name {
font-size: 14px;
}
.nav-logo-title {
font-size: 10px;
display: none;
}
.mobile-menu-toggle {
width: 40px;
height: 40px;
padding: 8px;
}
.hamburger-line {
width: 20px;
}
.page-content {
margin-top: 64px;
}
.inner {
padding: 0 16px;
}
.section {
padding: 48px 0;
}
.section--hero {
padding: 40px 0 32px;
}
.page-title {
font-size: clamp(32px, 14vw, 44px);
}
.lead {
font-size: 18px;
}
.footer-container {
padding: 24px 16px;
}
.footer-nav {
gap: 12px;
}
.footer-copy,
.footer-nav a {
font-size: 14px;
}
.mobile-menu a {
font-size: 24px;
}
.mobile-menu {
gap: 20px;
}
}
@media (max-width: 1024px) {
.hero {
height: auto;
min-height: calc(100vh - 92px);
}
.hero-panel {
padding: 48px 40px;
}
.hero-h1 {
font-size: clamp(42px, 5vw, 62px);
}
.hero-portrait {
width: 280px;
}
.hero-avatar {
width: 240px;
height: 360px;
}
.avatar-shape {
width: 180px;
height: 180px;
}
.avatar-initials {
width: 130px;
height: 130px;
font-size: 42px;
bottom: 32px;
}
}
@media (max-width: 900px) {
.hero {
flex-direction: column;
min-height: auto;
padding-bottom: 0;
}
.hero-panel {
flex: none !important;
width: 100%;
padding: 48px 24px;
justify-content: center !important;
}
.hero-panel--left .hero-panel-inner,
.hero-panel--right .hero-panel-inner {
text-align: center;
max-width: 100%;
}
.hero-h1 {
font-size: clamp(48px, 12vw, 72px);
margin-bottom: 12px;
}
.hero-sub {
font-size: 16px;
}
.hero-sub br {
display: none;
}
.hero::after {
display: none;
}
.hero-panel--right::before {
display: none;
}
.hero-portrait {
position: relative;
transform: none;
left: auto;
width: 100%;
height: auto;
padding: 48px 24px 64px;
pointer-events: auto;
order: -1;
}
.hero-avatar {
width: 200px;
height: 280px;
margin: 0 auto;
}
.avatar-shape {
width: 160px;
height: 160px;
}
.avatar-initials {
width: 120px;
height: 120px;
font-size: 38px;
bottom: 28px;
}
.avatar-blob {
transform: scale(0.7);
}
.hero-cta-center {
pointer-events: auto;
}
}
@media (max-width: 480px) {
.hero-panel {
padding: 32px 16px;
}
.hero-h1 {
font-size: clamp(36px, 14vw, 52px);
}
.hero-sub {
font-size: 15px;
}
.hero-portrait {
padding: 32px 16px 48px;
}
.hero-avatar {
width: 160px;
height: 240px;
}
.avatar-shape {
width: 140px;
height: 140px;
}
.avatar-initials {
width: 100px;
height: 100px;
font-size: 32px;
bottom: 24px;
}
.hero-cta-center a.btn-primary {
padding: 14px 28px;
font-size: 15px;
}
}
@media (max-width: 900px) {
.portfolio-carousel-section {
padding: 56px 0;
}
.portfolio-carousel-header {
flex-direction: column;
gap: 16px;
align-items: flex-start;
margin-bottom: 24px;
}
.portfolio-carousel-title {
font-size: 28px;
}
.portfolio-card {
min-width: 280px;
max-width: 280px;
}
.portfolio-card-image {
height: 180px;
}
}
@media (max-width: 480px) {
.portfolio-carousel-section {
padding: 40px 0;
}
.portfolio-carousel-title {
font-size: 24px;
}
.portfolio-carousel-nav {
gap: 8px;
}
.portfolio-nav-btn {
width: 36px;
height: 36px;
}
.portfolio-card {
min-width: 260px;
max-width: 260px;
}
.portfolio-card-image {
height: 160px;
}
.portfolio-card-title {
font-size: 16px;
}
.portfolio-card-subtitle {
font-size: 13px;
}
.portfolio-tag {
font-size: 9px;
padding: 3px 6px;
}
}
@media (max-width: 900px) {
.video-testimonials-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.video-card-large {
max-height: 400px;
}
.video-cards-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.video-card-small {
height: 200px;
}
}
@media (max-width: 480px) {
.video-testimonials-section {
padding: 40px 0;
}
.video-card-large {
max-height: 300px;
}
.video-cards-grid {
gap: 8px;
}
.video-card-small {
height: 150px;
}
.video-play-btn-large {
width: 56px;
height: 56px;
}
.video-play-btn-large svg {
width: 24px;
height: 24px;
}
.video-play-btn-small {
width: 32px;
height: 32px;
}
.video-card-overlay {
padding: 16px;
}
.video-card-question {
font-size: 14px;
}
}
@media (max-width: 768px) {
.review-carousel-wrapper {
margin-top: 24px;
gap: 12px;
}
.review-card-mini {
min-width: 280px;
padding: 20px;
}
.review-card-text {
font-size: 14px;
}
.review-card-name {
font-size: 13px;
}
.review-card-role {
font-size: 11px;
}
.review-card-avatar {
width: 36px;
height: 36px;
font-size: 12px;
}
}
@media (max-width: 480px) {
.review-carousel-wrapper {
margin-top: 20px;
gap: 8px;
}
.review-card-mini {
min-width: 260px;
padding: 16px;
}
.review-quote-icon {
font-size: 48px;
top: 8px;
right: 12px;
}
}
@media (max-width: 900px) {
.service-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
}
@media (max-width: 600px) {
.service-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.service-card {
max-width: 400px;
margin: 0 auto;
}
.service-thumb {
height: 180px;
}
.service-card-title {
font-size: 18px;
}
}
@media (max-width: 900px) {
.frameworks-section {
padding: 48px 0;
}
.frameworks-title {
font-size: 12px;
margin-bottom: 24px;
}
.frameworks-grid {
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.framework-card {
padding: 16px 12px;
}
.framework-logo {
width: 40px;
height: 40px;
}
.framework-name {
font-size: 11px;
}
}
@media (max-width: 600px) {
.frameworks-grid {
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.framework-card {
padding: 14px 10px;
}
.framework-logo {
width: 36px;
height: 36px;
}
.framework-name {
font-size: 10px;
}
}
@media (max-width: 400px) {
.frameworks-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.view-all-wrap {
margin-top: 32px;
}
.view-all,
.btn-secondary {
font-size: 15px;
}
}
@media (max-width: 480px) {
.view-all-wrap {
margin-top: 24px;
}
.view-all,
.btn-secondary {
font-size: 14px;
}
}
html, body {
overflow-x: hidden;
max-width: 100vw;
}
.page-content {
overflow-x: hidden;
}
.inner {
overflow-x: hidden;
}
@media (max-width: 1024px) {
.skills-split {
grid-template-columns: 1fr;
gap: 40px;
}
.skills-col.right {
text-align: left;
}
.donut-wrap {
margin: 0 auto;
}
.bar-chart {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.bar-items {
min-width: 500px;
}
}
@media (max-width: 900px) {
.about-hero-strip {
gap: 12px;
margin-bottom: 32px;
flex-wrap: wrap;
justify-content: center;
}
.photo-strip-item {
width: 80px;
height: 80px;
}
.skills-col h2 {
font-size: 24px;
}
.skills-col li {
font-size: 16px;
}
.donut-chart {
width: 140px;
height: 140px;
}
.donut-svg {
width: 140px;
height: 140px;
}
.donut-labels {
flex-wrap: wrap;
justify-content: center;
gap: 12px;
}
.bar-chart {
flex-direction: column;
height: auto;
overflow-x: visible;
}
.bar-y-labels {
flex-direction: row;
justify-content: space-between;
width: 100%;
height: auto;
padding-bottom: 0;
margin-right: 0;
margin-bottom: 16px;
}
.bar-items {
flex-direction: column;
gap: 12px;
min-width: 0;
width: 100%;
}
.bar-item {
flex-direction: row;
height: auto;
gap: 12px;
}
.bar-fill {
width: auto;
height: 48px;
border-radius: 6px;
padding: 0 16px;
align-items: center;
justify-content: flex-start;
}
.bar-label {
width: 80px;
flex-shrink: 0;
text-align: left;
}
.feature-row,
.feature-row.alt {
grid-template-columns: 1fr;
gap: 24px;
direction: ltr;
}
.feature-row.alt > * {
direction: ltr;
}
.feature-image {
order: -1;
}
}
@media (max-width: 768px) {
.photo-strip-item {
width: 70px;
height: 70px;
}
.random-facts-grid,
.facts-grid {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.fact-card {
padding: 20px;
}
.fact-number {
font-size: 32px;
}
.bar-chart-section h2 {
font-size: 24px;
text-align: left;
}
.bar-fill {
height: 40px;
}
.bar-pct {
font-size: 16px;
}
}
@media (max-width: 480px) {
.photo-strip-item {
width: 60px;
height: 60px;
}
.skills-col h2 {
font-size: 20px;
}
.skills-col li {
font-size: 15px;
padding: 12px 0;
}
.random-facts-grid,
.facts-grid {
grid-template-columns: 1fr;
}
.donut-chart {
width: 120px;
height: 120px;
}
.donut-svg {
width: 120px;
height: 120px;
}
.bar-label {
width: 60px;
font-size: 11px;
}
.bar-fill {
height: 36px;
}
.bar-pct {
font-size: 14px;
}
.feature-text h3 {
font-size: 22px;
}
.feature-text p {
font-size: 15px;
}
}
@media (max-width: 900px) {
.portfolio-filter-bar {
flex-wrap: wrap;
gap: 8px;
}
.filter-btn {
padding: 8px 16px;
font-size: 13px;
}
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.portfolio-card-large {
padding: 20px;
}
}
@media (max-width: 600px) {
.portfolio-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.portfolio-card-large {
padding: 16px;
}
.portfolio-card-large .card-thumb {
height: 200px;
}
}
@media (max-width: 900px) {
.portfolio-hero-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.portfolio-sidebar {
order: 1;
}
.gallery-scroll-track {
gap: 12px;
}
.gallery-scroll-item {
min-width: 280px;
}
.project-content-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.project-faq-question {
padding: 16px;
font-size: 16px;
}
}
@media (max-width: 480px) {
.gallery-scroll-item {
min-width: 260px;
}
.portfolio-meta-item {
font-size: 14px;
}
.project-faq-question {
padding: 14px;
font-size: 15px;
}
.project-faq-answer {
padding: 0 14px 14px;
font-size: 14px;
}
}
@media (max-width: 900px) {
.solution-hero .page-hero-grid {
grid-template-columns: 1fr;
}
.solution-features-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.solution-process-timeline {
padding-left: 24px;
}
.pricing-cards {
grid-template-columns: 1fr;
gap: 20px;
max-width: 400px;
margin: 0 auto;
}
}
@media (max-width: 600px) {
.solution-features-grid {
grid-template-columns: 1fr;
}
.feature-card {
padding: 20px;
}
.feature-icon {
width: 48px;
height: 48px;
font-size: 24px;
}
.solution-process-step {
padding-left: 20px;
}
.process-step-number {
width: 32px;
height: 32px;
font-size: 14px;
}
}
@media (max-width: 768px) {
.blog-column {
gap: 24px;
}
.blog-column article {
padding: 20px;
}
.blog-column .card-thumb {
height: 180px;
margin: -20px -20px 20px;
border-radius: 12px 12px 0 0;
}
.blog-column .card-title {
font-size: 20px;
}
.blog-column .card-excerpt {
font-size: 15px;
}
.blog-author-row {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
}
@media (max-width: 768px) {
.post-header {
padding: 40px 0 32px;
}
.post-title {
font-size: clamp(28px, 8vw, 40px);
}
.post-meta {
flex-wrap: wrap;
gap: 12px;
}
.post-body {
font-size: 17px;
}
.post-body h2 {
font-size: 24px;
}
.post-body h3 {
font-size: 20px;
}
.post-body blockquote {
padding: 20px;
font-size: 18px;
}
.post-footer {
flex-direction: column;
gap: 20px;
}
.share-buttons {
justify-content: flex-start;
}
}
@media (max-width: 480px) {
.post-title {
font-size: 26px;
}
.post-body {
font-size: 16px;
}
.code-block {
padding: 16px;
font-size: 13px;
}
}
@media (max-width: 900px) {
.contact-hero-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.contact-portrait {
order: -1;
}
.contact-abstract {
max-width: 280px;
margin: 0 auto;
}
}
@media (max-width: 768px) {
.social-grid {
grid-template-columns: 1fr;
gap: 0;
}
.social-item {
margin-bottom: 20px;
}
.social-link {
font-size: 16px;
}
.social-icon {
width: 40px;
height: 40px;
}
.social-icon svg {
width: 18px;
height: 18px;
}
}
@media (max-width: 768px) {
.contact-form-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.form-field input,
.form-field select,
.form-field textarea {
font-size: 16px;
padding: 12px 14px;
}
}
@media (max-width: 900px) {
.booking-layout {
grid-template-columns: 1fr;
gap: 24px;
}
.booking-card {
max-width: 500px;
margin: 0 auto;
width: 100%;
}
}
@media (max-width: 600px) {
.consultant-strip {
padding: 16px 20px;
}
.consultant-avatar {
width: 44px;
height: 44px;
font-size: 16px;
}
.consultant-info h3 {
font-size: 15px;
}
.consultant-badge {
font-size: 12px;
}
.duration-selector {
padding: 16px 20px;
}
.duration-btn {
height: 36px;
font-size: 13px;
}
.cal-wrap {
padding: 16px 20px 20px;
}
.cal-month-title {
font-size: 16px;
}
.cal-nav-btn {
width: 32px;
height: 32px;
}
.cal-weekday {
font-size: 11px;
}
.cal-day {
height: 36px;
font-size: 13px;
}
.slots-card {
padding: 20px;
}
.slots-grid {
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
.slot-btn {
padding: 10px 8px;
font-size: 13px;
}
.booking-form-card {
padding: 20px;
}
.booking-summary {
padding: 16px;
}
}
@media (max-width: 400px) {
.slots-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 900px) {
.quote-shell {
padding: 32px 24px;
}
.quote-progress {
display: none;
}
.quote-step h2 {
font-size: 24px;
}
.service-option-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.service-option {
padding: 16px;
}
.service-option-icon {
font-size: 28px;
}
}
@media (max-width: 600px) {
.quote-shell {
padding: 24px 16px;
}
.quote-step h2 {
font-size: 20px;
}
.service-option-grid {
grid-template-columns: 1fr;
}
.option-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.option-card {
padding: 14px;
}
.yn-group {
flex-direction: column;
gap: 8px;
}
.yn-btn {
width: 100%;
}
.quote-nav {
flex-direction: column;
gap: 12px;
}
.quote-nav .btn-primary,
.quote-nav .btn-secondary {
width: 100%;
}
.review-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 900px) {
.pricing-tabs {
flex-wrap: wrap;
gap: 8px;
}
.pricing-tab {
padding: 10px 16px;
font-size: 13px;
}
.pricing-tiers-grid {
grid-template-columns: 1fr;
gap: 20px;
max-width: 400px;
margin: 0 auto;
}
.pricing-tier-card {
padding: 24px;
}
.billing-toggle {
flex-direction: column;
gap: 8px;
}
.billing-option {
width: 100%;
justify-content: center;
}
}
@media (max-width: 600px) {
.ptc-price {
font-size: 36px;
}
.ptc-feature {
font-size: 14px;
}
.comparison-table {
font-size: 13px;
}
.comparison-table th,
.comparison-table td {
padding: 12px 8px;
}
}
@media (max-width: 900px) {
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
}
@media (max-width: 600px) {
.testimonials-grid {
grid-template-columns: 1fr;
}
.testimonial-card {
padding: 24px;
}
.testimonial-text {
font-size: 15px;
}
.testimonial-avatar {
width: 48px;
height: 48px;
}
}
@media (max-width: 900px) {
.process-timeline {
padding-left: 20px;
}
.process-step {
padding-left: 32px;
padding-bottom: 40px;
}
.process-step::before {
left: -20px;
}
.process-step::after {
left: -28px;
}
}
@media (max-width: 600px) {
.process-step h3 {
font-size: 20px;
}
.process-step p {
font-size: 15px;
}
.faq-question {
padding: 16px;
font-size: 16px;
}
.faq-answer {
padding: 0 16px 16px;
font-size: 15px;
}
}
@media (max-width: 900px) {
.learn-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
}
@media (max-width: 600px) {
.learn-grid {
grid-template-columns: 1fr;
}
.learn-card {
padding: 20px;
}
.learn-card-title {
font-size: 18px;
}
}
@media (max-width: 900px) {
.templates-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.tpl-card {
padding: 16px;
}
}
@media (max-width: 600px) {
.templates-grid {
grid-template-columns: 1fr;
}
.tpl-card-image {
height: 200px;
}
.tpl-card-title {
font-size: 18px;
}
.three-canvas-wrap {
height: 300px;
}
}
@media (max-width: 768px) {
.error-404 h1 {
font-size: clamp(80px, 20vw, 120px);
}
.error-404 h2 {
font-size: 24px;
}
.error-404 p {
font-size: 16px;
}
}
@media (max-width: 768px) {
.card {
padding: 20px;
border-radius: 10px;
}
.card-thumb {
margin: -20px -20px 20px;
border-radius: 10px 10px 0 0;
}
.card-title {
font-size: 20px;
}
.card-excerpt {
font-size: 15px;
}
.card-meta {
font-size: 13px;
}
.btn-primary,
.btn-secondary {
padding: 12px 24px;
font-size: 15px;
}
.tag {
font-size: 11px;
padding: 4px 10px;
}
}
@media (max-width: 480px) {
.card {
padding: 16px;
}
.card-thumb {
margin: -16px -16px 16px;
}
.card-title {
font-size: 18px;
}
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 14px;
}
}
@media (max-width: 900px) {
.mega-menu {
display: none !important;
}
.nav-item-mega .nav-chevron {
display: none;
}
}
:root {
--ink:         #111111;
--body:        #2e2e33;
--muted:       #6f6f76;
--border:      rgba(17,17,17,0.08);
--border-dark: rgba(17,17,17,0.16);
--radius:      10px;
--radius-card: 16px;
--shadow-sm:   0 1px 2px rgba(17,17,17,0.04), 0 2px 6px rgba(17,17,17,0.04);
--shadow-md:   0 2px 6px rgba(17,17,17,0.04), 0 10px 28px rgba(17,17,17,0.08);
--shadow-lg:   0 4px 10px rgba(17,17,17,0.05), 0 20px 48px rgba(17,17,17,0.12);
--card-shadow: none;
--ease:        cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: #fff; }
:focus-visible {
outline: 2px solid var(--ink);
outline-offset: 3px;
border-radius: 4px;
}
.section       { padding: 112px 0; }
.section--hero { padding: 96px 0 72px; border-bottom: 1px solid var(--border); }
.page-title {
color: var(--ink);
letter-spacing: -0.045em;
line-height: 0.95;
}
.lead {
font-size: 23px;
font-weight: 300;
color: #4a4a52;
line-height: 1.55;
letter-spacing: -0.01em;
}
.body-text {
font-size: 17px;
color: var(--muted);
line-height: 1.75;
max-width: 62ch;
}
h2 { letter-spacing: -0.02em; }
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-light,
.btn-outline-light {
display: inline-flex;
align-items: center;
gap: 10px;
height: 52px;
padding: 0 30px;
border-radius: 999px;
font-family: var(--font);
font-size: 16px;
cursor: pointer;
text-decoration: none;
white-space: nowrap;
transition: background 0.3s var(--ease), color 0.3s var(--ease),
border-color 0.3s var(--ease), transform 0.3s var(--ease),
box-shadow 0.3s var(--ease);
}
.btn-primary {
background: var(--ink);
color: #fff;
border: 1px solid var(--ink);
font-weight: 700;
box-shadow: none;
}
.btn-primary:hover {
background: #000;
border-color: #000;
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(17,17,17,0.22);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(17,17,17,0.18); }
.btn-secondary,
.btn-ghost {
background: transparent;
color: var(--ink);
border: 1px solid var(--border-dark);
font-weight: 600;
}
.btn-secondary:hover,
.btn-ghost:hover {
background: var(--ink);
color: #fff;
border-color: var(--ink);
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(17,17,17,0.18);
}
.btn-light {
background: #fff;
color: var(--ink);
border: 1px solid #fff;
font-weight: 700;
}
.btn-light:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.btn-outline-light {
background: transparent;
color: #fff;
border: 1px solid rgba(255,255,255,0.32);
font-weight: 600;
}
.btn-outline-light:hover {
border-color: #fff;
background: rgba(255,255,255,0.06);
transform: translateY(-2px);
}
.card,
.service-card,
.portfolio-card,
.review-card-mini,
.tpl-card,
.principle-card,
.more-card,
.step-item {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-card);
box-shadow: none;
transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover,
.service-card:hover,
.portfolio-card:hover,
.tpl-card:hover,
.more-card:hover,
.step-item:hover {
transform: translateY(-5px);
border-color: var(--border-dark);
box-shadow: var(--shadow-lg);
}
.card-title, .service-card-title, .portfolio-card-title, .step-title { color: var(--ink); }
.card-thumb img,
.portfolio-card-img,
.service-thumb-img {
transition: transform 0.7s var(--ease);
}
.card:hover .card-thumb img,
.portfolio-card:hover .portfolio-card-img,
.service-card:hover .service-thumb-img {
transform: scale(1.045);
}
.card-grid { gap: 28px; }
.service-grid { gap: 28px; }
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 16px;
}
.eyebrow-dot {
width: 6px;
height: 6px;
border-radius: 1px;
background: var(--ink);
transform: rotate(45deg);
flex-shrink: 0;
}
.section-head {
max-width: 720px;
margin-bottom: 56px;
}
.section-head h2 {
font-size: clamp(30px, 3.4vw, 40px);
font-weight: 300;
color: var(--ink);
letter-spacing: -0.015em;
line-height: 1.2;
}
.section-head h2 strong { font-weight: 700; }
.skills-col h2,
.facts-list h2,
.bar-chart-section h2,
.feature-text h2 {
color: var(--ink);
letter-spacing: -0.015em;
}
.section-head-sub {
margin-top: 16px;
font-size: 18px;
font-weight: 300;
color: var(--muted);
line-height: 1.7;
max-width: 56ch;
}
.section-head--center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-head-sub { margin-left: auto; margin-right: auto; }
.section-head--flush { margin-bottom: 0; }
.section-head h2 + .body-text { margin-top: 18px; }
.v2-mt-md { margin-top: 44px; }
.v2-mt-lg { margin-top: 72px; }
.grad-text {
background: none;
-webkit-background-clip: initial;
background-clip: initial;
color: inherit;
text-decoration: underline;
text-decoration-thickness: 3px;
text-decoration-skip-ink: none;
text-underline-offset: 7px;
text-decoration-color: rgba(17,17,17,0.22);
}
.section-label { margin-bottom: 56px; }
.section-label::before,
.section-label::after { background: var(--border); }
.section-label span {
font-size: 11px;
letter-spacing: 0.22em;
color: var(--muted);
}
.check-list { list-style: none; padding: 0; }
.check-list li {
position: relative;
padding-left: 36px;
margin-bottom: 16px;
font-size: 17px;
font-weight: 400;
color: var(--body);
line-height: 1.6;
}
.check-list li::before {
content: '';
position: absolute;
left: 0;
top: 1px;
width: 22px;
height: 22px;
border-radius: 50%;
border: 1px solid var(--border-dark);
background: var(--white);
}
.check-list li::after {
content: '';
position: absolute;
left: 7px;
top: 8px;
width: 9px;
height: 5px;
border-left: 2px solid var(--ink);
border-bottom: 2px solid var(--ink);
transform: rotate(-45deg);
}
.pill {
display: inline-flex;
align-items: center;
padding: 6px 16px;
border-radius: 999px;
border: 1px solid var(--border-dark);
background: var(--white);
color: var(--ink);
font-size: 13px;
font-weight: 600;
line-height: 1.4;
white-space: nowrap;
transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
a.pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.stat-band {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.stat-item {
text-align: center;
padding: 40px 16px;
border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
font-size: clamp(36px, 4vw, 52px);
font-weight: 800;
color: var(--ink);
letter-spacing: -0.03em;
line-height: 1;
}
.stat-num em {
font-style: normal;
background: none;
-webkit-background-clip: initial;
background-clip: initial;
color: var(--ink);
}
.stat-lbl {
margin-top: 10px;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.02em;
color: var(--muted);
}
.step-strip {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 24px;
}
.step-item { padding: 32px 26px 30px; }
.step-num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--ink);
color: #fff;
font-size: 15px;
font-weight: 700;
margin-bottom: 18px;
transition: transform 0.4s var(--ease);
}
.step-item:hover .step-num { transform: scale(1.08); }
.step-title {
font-size: 17px;
font-weight: 700;
margin-bottom: 8px;
}
.step-desc {
font-size: 15px;
font-weight: 300;
color: var(--muted);
line-height: 1.65;
}
.cta-band {
position: relative;
background: var(--ink);
padding: 112px 0;
overflow: hidden;
}
.cta-band::before {
content: '';
position: absolute;
width: 720px;
height: 720px;
border-radius: 50%;
background: radial-gradient(closest-side, rgba(255,255,255,0.055), transparent);
top: -420px;
left: 50%;
transform: translateX(-50%);
pointer-events: none;
}
.cta-band::after { content: none; }
.cta-band-inner {
position: relative;
z-index: 1;
text-align: center;
max-width: 760px;
}
.cta-band-title {
font-size: clamp(32px, 4.2vw, 48px);
font-weight: 300;
color: #fff;
letter-spacing: -0.02em;
line-height: 1.15;
margin-bottom: 20px;
}
.cta-band-title strong { font-weight: 700; }
.cta-band-sub {
font-size: 18px;
font-weight: 300;
color: rgba(255,255,255,0.68);
line-height: 1.7;
max-width: 54ch;
margin: 0 auto 40px;
}
.cta-band-actions {
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
}
.cta-band-note {
margin-top: 24px;
font-size: 14px;
font-weight: 300;
color: rgba(255,255,255,0.45);
}
.cta-band-note a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.cta-band-note a:hover { color: #fff; }
.bg-orbs { position: relative; }
.bg-orbs::before,
.bg-orbs::after {
content: '';
position: absolute;
border-radius: 50%;
pointer-events: none;
z-index: 0;
}
.bg-orbs::before {
width: 520px;
height: 520px;
background: radial-gradient(closest-side, rgba(17,17,17,0.028), transparent);
top: -180px;
right: -160px;
}
.bg-orbs::after {
width: 420px;
height: 420px;
background: radial-gradient(closest-side, rgba(17,17,17,0.022), transparent);
bottom: -160px;
left: -140px;
}
.bg-orbs > .inner { position: relative; z-index: 1; }
.cta-band.bg-orbs::before {
width: 720px;
height: 720px;
border-radius: 50%;
background: radial-gradient(closest-side, rgba(255,255,255,0.055), transparent);
top: -420px;
right: auto;
left: 50%;
transform: translateX(-50%);
}
.cta-band.bg-orbs::after { content: none; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
border-radius: 12px;
transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
outline: none;
border-color: var(--ink) !important;
box-shadow: 0 0 0 4px rgba(17,17,17,0.06);
}
.navbar {
background: #111111;
border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-links { gap: 34px; }
.nav-links a {
position: relative;
font-size: 16px;
font-weight: 400;
color: rgba(255,255,255,0.68);
padding: 6px 0;
transition: color 0.25s var(--ease);
}
.nav-links a::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1.5px;
background: #fff;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after {
transform: scaleX(1);
transform-origin: left;
}
.nav-mega-trigger {
font-size: 16px;
font-weight: 400;
color: rgba(255,255,255,0.68);
padding: 6px 0;
}
.nav-chevron {
transition: transform 0.35s var(--ease), opacity 0.25s;
opacity: 0.5;
}
.nav-item-mega:hover .nav-chevron,
.nav-item-mega:focus-within .nav-chevron {
transform: rotate(180deg);
opacity: 1;
}
.mega-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(12px) scale(0.98);
transform-origin: top center;
opacity: 0;
visibility: hidden;
padding-top: 18px;
z-index: 200;
transition: opacity 0.28s var(--ease) 0.12s,
transform 0.28s var(--ease) 0.12s,
visibility 0s linear 0.4s;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0) scale(1);
transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
}
.mega-menu-inner {
background: rgba(22,22,22,0.97);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border: 1px solid rgba(255,255,255,0.09);
border-radius: 18px;
box-shadow: 0 30px 70px rgba(0,0,0,0.55);
padding: 12px;
min-width: 560px;
}
.mega-menu-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2px;
}
.mega-item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 13px 14px;
border-radius: 12px;
opacity: 0;
transform: translateY(6px);
transition: background 0.25s var(--ease),
opacity 0.3s var(--ease),
transform 0.3s var(--ease);
}
.nav-item-mega:hover .mega-item,
.nav-item-mega:focus-within .mega-item {
opacity: 1;
transform: translateY(0);
}
.nav-item-mega:hover .mega-item:nth-child(1), .nav-item-mega:focus-within .mega-item:nth-child(1) { transition-delay: 0.05s; }
.nav-item-mega:hover .mega-item:nth-child(2), .nav-item-mega:focus-within .mega-item:nth-child(2) { transition-delay: 0.08s; }
.nav-item-mega:hover .mega-item:nth-child(3), .nav-item-mega:focus-within .mega-item:nth-child(3) { transition-delay: 0.11s; }
.nav-item-mega:hover .mega-item:nth-child(4), .nav-item-mega:focus-within .mega-item:nth-child(4) { transition-delay: 0.14s; }
.nav-item-mega:hover .mega-item:nth-child(5), .nav-item-mega:focus-within .mega-item:nth-child(5) { transition-delay: 0.17s; }
.nav-item-mega:hover .mega-item:nth-child(6), .nav-item-mega:focus-within .mega-item:nth-child(6) { transition-delay: 0.2s; }
.mega-item:hover { background: rgba(255,255,255,0.06); }
.mega-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 11px;
background: rgba(255,255,255,0.08);
color: rgba(255,255,255,0.85);
flex-shrink: 0;
transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.mega-icon svg { width: 19px; height: 19px; }
.mega-item:hover .mega-icon { background: #fff; color: var(--ink); }
.mega-title {
color: rgba(255,255,255,0.92);
font-size: 14.5px;
font-weight: 600;
line-height: 1.35;
}
.mega-desc {
color: rgba(255,255,255,0.45);
font-size: 12.5px;
font-weight: 300;
line-height: 1.45;
}
.mega-item:hover .mega-desc { color: rgba(255,255,255,0.6); }
.mega-footer {
margin-top: 8px;
padding: 12px 14px 8px;
border-top: 1px solid rgba(255,255,255,0.07);
}
.mega-view-all {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255,255,255,0.55);
font-size: 13px;
font-weight: 500;
transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.mega-view-all:hover { color: #fff; gap: 10px; }
.mobile-menu-overlay {
transition: opacity 0.4s var(--ease), visibility 0.4s;
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
}
.mobile-menu a {
opacity: 0;
transform: translateY(14px);
transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s;
}
.mobile-menu-overlay.active .mobile-menu a {
opacity: 1;
transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-menu a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu-overlay.active .mobile-menu a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu a:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu-overlay.active .mobile-menu a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu-overlay.active .mobile-menu a:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu-overlay.active .mobile-menu a:nth-child(6) { transition-delay: 0.26s; }
.mobile-menu-social {
opacity: 0;
transition: opacity 0.4s var(--ease) 0.3s;
}
.mobile-menu-overlay.active .mobile-menu-social { opacity: 1; }
.footer-v2 { background: var(--ink); display: block; }
.footer-v2 .back-to-top {
background: #fff;
color: var(--ink);
border: 1px solid var(--border);
box-shadow: 0 8px 24px rgba(0,0,0,0.35);
transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.footer-v2 .back-to-top:hover {
background: #fff;
color: var(--ink);
transform: translateX(-50%) translateY(-3px);
box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.footer-v2-container {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px 0;
}
.footer-v2-grid {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 64px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-v2-name {
display: block;
color: #fff;
font-size: 19px;
font-weight: 800;
letter-spacing: -0.01em;
margin-bottom: 14px;
}
.footer-v2-pitch {
color: rgba(255,255,255,0.5);
font-size: 15px;
font-weight: 300;
line-height: 1.75;
max-width: 300px;
margin-bottom: 26px;
}
.footer-v2-social { display: flex; gap: 12px; }
.footer-v2-social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255,255,255,0.07);
color: rgba(255,255,255,0.6);
transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-v2-social a:hover {
background: #fff;
color: var(--ink);
transform: translateY(-3px);
}
.footer-v2-social svg { width: 17px; height: 17px; }
.footer-v2-heading {
color: rgba(255,255,255,0.35);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
margin-bottom: 20px;
}
.footer-v2-links { list-style: none; padding: 0; }
.footer-v2-links li { margin-bottom: 12px; }
.footer-v2-links a {
color: rgba(255,255,255,0.6);
font-size: 15px;
font-weight: 300;
transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer-v2-links a:hover { color: #fff; padding-left: 5px; }
.footer-v2-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
padding: 28px 0 32px;
}
.footer-v2-bottom .footer-copy { color: rgba(255,255,255,0.35); font-size: 13.5px; }
.footer-v2-bottom .footer-nav { gap: 22px; }
.footer-v2-bottom .footer-nav a { color: rgba(255,255,255,0.45); font-size: 13.5px; }
.footer-v2-bottom .footer-nav a:hover { color: #fff; }
.view-all {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--ink);
font-weight: 600;
border-bottom: 1.5px solid var(--border-dark);
padding-bottom: 3px;
transition: border-color 0.3s var(--ease), gap 0.3s var(--ease), opacity 0.3s;
}
.view-all:hover { opacity: 1; border-color: var(--ink); gap: 12px; }
.cta-link {
color: var(--ink);
font-weight: 600;
border-bottom: 1.5px solid var(--border-dark);
padding-bottom: 3px;
transition: border-color 0.3s var(--ease);
}
.cta-link:hover { border-color: var(--ink); }
.divider { border: none; border-top: 1px solid var(--border); }
.filter-btn {
border-radius: 999px;
border: 1px solid var(--border-dark);
background: var(--white);
color: var(--body);
font-weight: 600;
transition: background 0.3s var(--ease), color 0.3s var(--ease),
border-color 0.3s var(--ease), transform 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.filter-btn.active {
background: var(--ink);
color: #fff;
border-color: var(--ink);
}
.faq-item,
.project-faq-item {
border: 1px solid var(--border);
border-radius: 14px;
background: var(--white);
transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item:hover,
.project-faq-item:hover { border-color: var(--border-dark); }
.faq-item.open,
.project-faq-item.open { border-color: var(--border-dark); box-shadow: var(--shadow-md); }
.post-body blockquote {
border-left: 3px solid var(--ink);
padding-left: 22px;
color: var(--body);
font-style: italic;
}
.post-body img { border-radius: var(--radius-card); }
.frameworks-title {
letter-spacing: 0.22em;
font-size: 12px;
}
.portfolio-carousel-title {
font-weight: 300;
color: var(--ink);
letter-spacing: -0.015em;
}
.framework-card {
transition: transform 0.35s var(--ease), opacity 0.35s;
}
.framework-card:hover { transform: translateY(-4px); }
.trust-num { color: var(--ink); letter-spacing: -0.02em; }
.hover-lift { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hero-kicker {
display: block;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
opacity: 0.5;
margin-bottom: 16px;
}
.hero-panel { transition: background 0.4s var(--ease); }
.btn-submit,
.btn-book,
.btn-submit-quote {
background: var(--ink);
border: 1px solid var(--ink);
border-radius: 999px;
transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-submit:hover,
.btn-book:hover,
.btn-submit-quote:hover {
background: #000;
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(17,17,17,0.22);
}
.btn-submit:active,
.btn-book:active,
.btn-submit-quote:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(17,17,17,0.18); }
.duration-btn,
.slot-btn,
.yn-btn {
border-width: 1px;
border-color: var(--border-dark);
border-radius: 999px;
transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
color 0.25s var(--ease), transform 0.25s var(--ease);
}
.duration-btn:not(.active):hover,
.slot-btn:hover:not(:disabled):not(.selected),
.yn-btn:hover:not(.selected) {
border-color: var(--ink);
transform: translateY(-1px);
}
.option-pill { border-width: 1px; border-color: var(--border-dark); }
.option-pill:hover:not(.selected) { border-color: var(--ink); }
.yn-btn { border-radius: 999px; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
transition-delay: 0s !important;
scroll-behavior: auto !important;
}
.mega-item { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 1024px) {
.footer-v2-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
.section { padding: 88px 0; }
}
@media (max-width: 768px) {
.section { padding: 72px 0; }
.section-head { margin-bottom: 40px; }
.lead { font-size: 20px; }
.cta-band { padding: 80px 0; }
.cta-band-actions { flex-direction: column; align-items: center; }
.cta-band-actions .btn-light,
.cta-band-actions .btn-outline-light { width: 100%; max-width: 320px; justify-content: center; }
.stat-band { grid-template-columns: repeat(2, 1fr); }
.stat-item { padding: 28px 12px; }
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-child(1),
.stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
.stat-item:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; }
.step-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.footer-v2-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
.footer-v2-container { padding: 56px 24px 0; }
.footer-v2-bottom { flex-direction: column; align-items: flex-start; }
.btn-primary, .btn-secondary, .btn-ghost { height: 50px; padding: 0 26px; font-size: 15px; }
}
h1, h2, h3, .page-title, .cta-band-title { text-wrap: balance; }
p, .lead, .body-text, .section-head-sub, .cta-band-sub { text-wrap: pretty; }
.stat-num, .trust-num, .bar-pct, .ptc-amount, .cal-day { font-variant-numeric: tabular-nums; }
html { scrollbar-width: thin; scrollbar-color: rgba(17,17,17,0.28) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
background: rgba(17,17,17,0.22);
border-radius: 999px;
border: 3px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(17,17,17,0.4); }
* { -webkit-tap-highlight-color: transparent; }
[id] { scroll-margin-top: 112px; }
::placeholder { color: #a6a6ad; opacity: 1; }
.hero::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(17,17,17,0.055) 1px, transparent 1px);
background-size: 24px 24px;
-webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 75%);
mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 75%);
pointer-events: none;
}
.avatar-blob { opacity: 1; }
.avatar-blob-1 { background: #E7E7EA; }
.avatar-blob-2 { background: #D9D9DE; }
.avatar-blob-3 { background: #CBCBD1; }
.hero-cta-center a.btn-primary {
height: 46px;
padding: 0 24px;
font-size: 15px;
}
.card:active,
.service-card:active,
.portfolio-card:active,
.tpl-card:active,
.more-card:active {
transform: translateY(-2px);
transition-duration: 0.1s;
}
@media (max-width: 768px) {
.hero::before { display: none; }
}
html, body {
overflow-x: hidden;
overflow-x: clip;
}
.bg-orbs { overflow: clip; }
:root {
--accent:      #593AE9;
--accent-dark: #4A2FD6;
--accent-soft: rgba(89, 58, 233, 0.08);
}
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline-color: var(--accent); }
.cta-link {
color: var(--accent);
border-bottom-color: rgba(89,58,233,0.3);
}
.cta-link:hover { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }
.view-all {
color: var(--accent);
border-bottom-color: rgba(89,58,233,0.3);
}
.view-all:hover { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }
.post-body a:not(.btn-primary):not(.btn-secondary) {
color: var(--accent);
text-decoration: underline;
text-decoration-color: rgba(89,58,233,0.35);
text-underline-offset: 3px;
transition: color 0.2s, text-decoration-color 0.2s;
}
.post-body a:not(.btn-primary):not(.btn-secondary):hover {
color: var(--accent-dark);
text-decoration-color: var(--accent-dark);
}
.grad-text { text-decoration-color: var(--accent); }
.btn-primary:hover {
background: var(--accent);
border-color: var(--accent);
box-shadow: 0 10px 24px rgba(89,58,233,0.3);
}
.btn-primary:active { box-shadow: 0 4px 12px rgba(89,58,233,0.25); }
.btn-secondary:hover,
.btn-ghost:hover {
background: transparent;
color: var(--accent);
border-color: var(--accent);
box-shadow: 0 8px 20px rgba(89,58,233,0.12);
}
.btn-light:hover { color: var(--accent); }
.btn-submit:hover,
.btn-book:hover,
.btn-submit-quote:hover {
background: var(--accent);
border-color: var(--accent);
box-shadow: 0 10px 24px rgba(89,58,233,0.3);
}
.eyebrow-dot { background: var(--accent); }
.check-list li::after {
border-left-color: var(--accent);
border-bottom-color: var(--accent);
}
.stat-num em { color: var(--accent); }
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
border-color: var(--accent) !important;
box-shadow: 0 0 0 4px var(--accent-soft);
}
.nav-links a.active { color: #fff; }
.nav-links a.active::after { background: var(--accent); }
.nav-mega-trigger.active { color: #fff; }
.mega-item:hover .mega-icon { background: var(--accent); color: #fff; }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
a.pill:hover { background: #fff; color: var(--accent); border-color: var(--accent); }
.duration-btn:not(.active):hover,
.slot-btn:hover:not(:disabled):not(.selected),
.yn-btn:hover:not(.selected) { border-color: var(--accent); color: var(--accent); }
.option-pill:hover:not(.selected) { border-color: var(--accent); color: var(--accent); }
.footer-v2-social a:hover { background: var(--accent); color: #fff; }
.footer-v2 .back-to-top:hover { background: var(--accent); color: #fff; }
.include-check svg,
.ptc-check svg,
.trust-row-item svg { color: var(--accent); }
.bg-orbs::before { background: radial-gradient(closest-side, rgba(89,58,233,0.05), transparent); }
.bg-orbs::after  { background: radial-gradient(closest-side, rgba(89,58,233,0.04), transparent); }
:root {
--section-gray: #F4F7FA;
--tint-deep:    #ECF1F7;
--gray-bg:      #F4F7FA;
--text:         var(--ink);
}
.section--hero {
background: var(--section-gray);
border-bottom: 1px solid var(--border);
}
.frameworks-section { background: var(--tint-deep); }
.hero-panel--left:hover  { background: #F2F6FD; }
.hero-panel--right:hover { background: #F5F7F9; }
.hero-h1 .bracket { color: rgba(89, 58, 233, 0.55); }
.avatar-blob-3 { background: var(--accent); opacity: 0.85; }
.hero-shapes {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 1;
}
.h-shape {
position: absolute;
display: block;
}
.h-shape--ring {
width: 44px;
height: 44px;
border: 1.5px solid rgba(17,17,17,0.13);
border-radius: 50%;
top: 17%;
left: 11%;
}
.h-shape--dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent);
opacity: 0.75;
top: 24%;
right: 13%;
}
.h-shape--plus {
width: 18px;
height: 18px;
bottom: 30%;
left: 18%;
}
.h-shape--plus::before,
.h-shape--plus::after {
content: '';
position: absolute;
background: rgba(17,17,17,0.16);
border-radius: 2px;
}
.h-shape--plus::before { left: 8px; top: 0; width: 2px; height: 18px; }
.h-shape--plus::after  { left: 0; top: 8px; width: 18px; height: 2px; }
.h-shape--square {
width: 13px;
height: 13px;
border: 1.5px solid rgba(89,58,233,0.4);
border-radius: 3px;
transform: rotate(45deg);
bottom: 24%;
right: 19%;
}
.h-shape--ring2 {
width: 22px;
height: 22px;
border: 1.5px solid rgba(89,58,233,0.28);
border-radius: 50%;
top: 58%;
right: 9%;
}
.hero-shapes     { z-index: 0; }
.hero-panel      { z-index: 1; }
.hero-panel-inner { position: relative; z-index: 2; }
.hero-panel-inner {
transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-panel--left  .hero-panel-inner { transform-origin: right center; }
.hero-panel--right .hero-panel-inner { transform-origin: left center; }
@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
.hero-panel:hover .hero-panel-inner,
.hero-panel:focus-visible .hero-panel-inner {
transform: scale(1.03);
}
}
@media (min-width: 901px) {
.hero-panel--left  { padding-right: 190px; }
.hero-panel--right { padding-left: 190px; }
}
@media (min-width: 901px) and (max-width: 1200px) {
.hero-portrait   { width: 260px; }
.hero-avatar     { width: 220px; height: 340px; }
.avatar-shape    { width: 170px; height: 170px; }
.avatar-initials { width: 124px; height: 124px; bottom: 30px; }
.hero-panel--left  { padding-right: 150px; }
.hero-panel--right { padding-left: 150px; }
.hero-h1  { font-size: clamp(38px, 4.4vw, 54px); }
.hero-sub { font-size: 16px; }
}
.h-shape--ring   { top: 15%;    left: 3.5%; }
.h-shape--dot    { top: 21%;    right: 4%;  }
.h-shape--plus   { bottom: 27%; left: 4.5%; }
.h-shape--square { bottom: 21%; right: 4%;  }
.h-shape--ring2  { top: 60%;    right: 3%;  }
@media (max-width: 1199px) {
.hero-shapes { display: none; }
}
.service-card-body {
padding: 20px 22px 22px;
}
.service-card-title {
font-size: 18px;
font-weight: 600;
line-height: 1.35;
margin-bottom: 7px;
padding-right: 26px;
}
.service-card-desc {
font-size: 15px;
font-weight: 400;
line-height: 1.6;
color: var(--muted);
margin-bottom: 0;
}
.service-card-arrow { top: 22px; right: 20px; }
.mega-menu-grid {
gap: 12px;
align-items: start;
}
.mega-col {
display: flex;
flex-direction: column;
gap: 2px;
}
.mega-col-label {
margin: 0;
padding: 10px 14px 8px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
}
.mega-item {
opacity: 1;
transform: none;
transition: background 0.25s var(--ease);
}
.nav-item-mega:hover .mega-item,
.nav-item-mega:focus-within .mega-item {
opacity: 1;
transform: none;
transition-delay: 0s;
}
.frameworks-title {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 12px;
}
.mega-desc {
font-size: 13px;
font-weight: 400;
color: rgba(255,255,255,0.62);
}
.mega-item:hover .mega-desc { color: rgba(255,255,255,0.78); }
.nav-logo-title {
font-weight: 400;
color: rgba(255,255,255,0.66);
}
.post-body,
.solution-content-text,
.project-section-content,
.page-editor-content .post-body {
--block-radius: 12px;
}
.post-body .wp-block-image,
.solution-content-text .wp-block-image,
.project-section-content .wp-block-image {
margin: 32px 0;
}
.post-body .wp-block-image img,
.solution-content-text .wp-block-image img,
.project-section-content .wp-block-image img {
border-radius: var(--block-radius);
}
.wp-element-caption {
margin-top: 10px;
font-size: 14px;
color: var(--muted);
text-align: center;
}
.wp-block-buttons {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 28px 0;
padding: 0;
list-style: none;
}
.wp-block-button__link {
display: inline-flex;
align-items: center;
height: 52px;
padding: 0 30px;
border-radius: 999px;
background: var(--ink);
color: #fff;
font-size: 16px;
font-weight: 700;
text-decoration: none;
transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wp-block-button__link:hover {
background: #000;
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(17,17,17,0.22);
}
.wp-block-button.is-style-outline .wp-block-button__link {
background: transparent;
color: var(--ink);
border: 1px solid var(--border-dark);
}
.post-body .wp-block-quote,
.solution-content-text .wp-block-quote,
.project-section-content .wp-block-quote {
margin: 32px 0;
padding-left: 24px;
border-left: 3px solid var(--accent);
font-weight: 300;
}
.wp-block-quote cite {
display: block;
margin-top: 10px;
font-size: 15px;
font-style: normal;
color: var(--muted);
}
.wp-block-separator {
height: 0;
margin: 40px 0;
border: 0;
border-top: 1px solid var(--border);
}
.wp-block-table {
margin: 32px 0;
overflow-x: auto;
}
.wp-block-table table {
width: 100%;
border-collapse: collapse;
font-size: 16px;
}
.wp-block-table th,
.wp-block-table td {
padding: 12px 14px;
border: 1px solid var(--border);
text-align: left;
}
.wp-block-table th { font-weight: 700; background: var(--section-gray); }
.wp-block-code {
margin: 28px 0;
padding: 18px 20px;
background: #F5F5F7;
border-radius: var(--block-radius);
font-family: 'Courier New', monospace;
font-size: 15px;
overflow-x: auto;
}
.page-editor-content .post-body {
max-width: var(--col-blog);
margin: 0 auto;
}
.eyebrow--dot::before {
content: '';
width: 6px;
height: 6px;
border-radius: 1px;
background: var(--accent);
transform: rotate(45deg);
flex-shrink: 0;
}
.wp-block-group .wp-block-image {
margin: 0;
}
.card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}
.card:hover .card-thumb img { transform: scale(1.04); }
.card-meta {
font-size: 13px;
font-weight: 400;
color: var(--muted);
margin-top: 8px;
letter-spacing: 0.01em;
}
.section--hero-compact { padding: 44px 0 40px; }
.blog-index-header { max-width: 720px; }
.blog-index-header .page-title {
font-size: clamp(44px, 5vw, 64px);
margin-bottom: 16px;
}
.blog-index-header .lead { font-size: clamp(16px, 1.3vw, 19px); margin-bottom: 0; }
.blog-index-body   { padding-top: 44px; }
.blog-feature {
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 0;
align-items: stretch;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-card);
overflow: hidden;
margin-bottom: 40px;
transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-feature:hover {
box-shadow: 0 14px 34px rgba(0,0,0,0.09);
border-color: rgba(0,0,0,0.16);
}
.blog-feature-thumb {
display: block;
overflow: hidden;
background: var(--section-gray);
min-height: 280px;
}
.blog-feature-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}
.blog-feature:hover .blog-feature-thumb img { transform: scale(1.03); }
.blog-feature-body {
padding: 40px 42px;
display: flex;
flex-direction: column;
justify-content: center;
}
.blog-card-kicker {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 14px;
}
.blog-feature-title {
font-size: clamp(26px, 2.4vw, 34px);
font-weight: 600;
line-height: 1.22;
letter-spacing: -0.015em;
margin-bottom: 14px;
text-wrap: balance;
}
.blog-feature-title a { color: var(--ink); text-decoration: none; }
.blog-feature:hover .blog-feature-title a { color: var(--accent); }
.blog-feature-excerpt {
font-size: 17px;
font-weight: 300;
line-height: 1.65;
color: var(--muted);
margin-bottom: 18px;
}
.blog-card-meta {
font-size: 13.5px;
font-weight: 400;
color: var(--muted);
font-variant-numeric: tabular-nums;
}
.blog-card-meta .dot { margin: 0 7px; opacity: 0.55; }
.blog-feature-body .cta-link { margin-top: 20px; align-self: flex-start; }
.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.blog-card {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-card);
overflow: hidden;
margin-bottom: 0;
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 28px rgba(0,0,0,0.08);
border-color: rgba(0,0,0,0.16);
}
.blog-card-thumb {
display: block;
aspect-ratio: 11 / 7;
overflow: hidden;
background: var(--section-gray);
}
.blog-card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body {
padding: 22px 22px 24px;
display: flex;
flex-direction: column;
flex: 1 1 auto;
}
.blog-card-title {
font-size: 18px;
font-weight: 600;
line-height: 1.35;
margin-bottom: 10px;
text-wrap: balance;
}
.blog-card-title a { color: var(--ink); text-decoration: none; }
.blog-card:hover .blog-card-title a { color: var(--accent); }
.blog-card-excerpt {
font-size: 15px;
font-weight: 300;
line-height: 1.62;
color: var(--muted);
margin-bottom: 16px;
flex: 1 1 auto;
}
.post-wrap {
max-width: none;
margin: 0;
padding: 0 0 96px;
}
.post-header { padding: 26px 0 26px; }
.post-header .post-h1 {
font-size: clamp(30px, 3.4vw, 44px);
max-width: 22ch;
margin-bottom: 16px;
}
.post-header .post-subtitle {
font-size: clamp(17px, 1.35vw, 20px);
max-width: 64ch;
margin-bottom: 0;
}
.post-header .post-breadcrumb { margin-bottom: 14px; font-size: 13px; }
.post-meta-row {
display: flex;
align-items: center;
gap: 12px;
margin-top: 20px;
}
.post-meta-row .avatar { width: 42px; height: 42px; font-size: 14px; }
.post-meta-text { display: flex; flex-direction: column; gap: 3px; }
.post-meta-author { font-size: 15px; font-weight: 600; color: var(--ink); }
.post-meta-sub {
font-size: 14px;
font-weight: 300;
color: var(--muted);
font-variant-numeric: tabular-nums;
}
.post-meta-sub .dot { margin: 0 6px; opacity: 0.55; }
.post-wrap .post-hero-img {
aspect-ratio: 1360 / 540;
margin-bottom: 44px;
border-radius: var(--radius-card);
}
.post-wrap .post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 320px;
gap: 64px;
align-items: start;
}
.post-main { min-width: 0; max-width: 760px; }
.post-main .post-body p { font-size: 18.5px; line-height: 1.75; margin-bottom: 24px; }
.post-main .post-body li { font-size: 18.5px; line-height: 1.7; }
.post-main .post-body ul,
.post-main .post-body ol { margin-bottom: 26px; }
.post-main .post-body h2 {
font-size: 29px;
margin-top: 46px;
margin-bottom: 16px;
scroll-margin-top: 120px;
}
.post-main .post-body h3 {
font-size: 20.5px;
margin-top: 32px;
margin-bottom: 12px;
scroll-margin-top: 120px;
}
.post-main .post-body > *:first-child { margin-top: 0; }
.post-main .post-body .lead { font-size: 20px; line-height: 1.65; margin-bottom: 28px; }
.post-inline-cta {
margin: 48px 0 8px;
padding: 30px 32px;
background: var(--tint-deep, #ECF1F7);
border-radius: var(--radius-card);
}
.post-inline-cta-title {
font-size: 21px;
font-weight: 600;
line-height: 1.3;
margin-bottom: 10px;
text-wrap: balance;
}
.post-inline-cta-text {
font-size: 16px;
font-weight: 300;
line-height: 1.65;
color: var(--muted);
margin-bottom: 20px;
}
.post-sidebar { min-width: 0; }
.post-sidebar-sticky {
position: sticky;
top: 116px;
display: flex;
flex-direction: column;
gap: 22px;
}
.sb-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-card);
padding: 22px 22px 24px;
}
.sb-title {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.11em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 14px;
}
.sb-toc { max-height: 46vh; overflow-y: auto; }
.sb-toc-list { list-style: none; margin: 0; padding: 0; }
.sb-toc-list li { margin-bottom: 10px; line-height: 1.4; }
.sb-toc-list a {
font-size: 14.5px;
font-weight: 300;
color: var(--body);
text-decoration: none;
border-left: 2px solid var(--border);
padding-left: 12px;
display: block;
transition: color 0.2s ease, border-color 0.2s ease;
}
.sb-toc-list a:hover { color: var(--accent); border-left-color: var(--accent); }
.sb-cta { background: var(--ink); border-color: var(--ink); }
.sb-cta-eyebrow {
font-size: 11.5px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255,255,255,0.6);
margin-bottom: 10px;
}
.sb-cta-title {
font-size: 20px;
font-weight: 600;
color: #fff;
line-height: 1.3;
margin-bottom: 10px;
}
.sb-cta-text {
font-size: 14.5px;
font-weight: 300;
line-height: 1.6;
color: rgba(255,255,255,0.72);
margin-bottom: 18px;
}
.sb-cta-btn { width: 100%; justify-content: center; }
.sb-cta-alt { display: inline-block; margin-top: 14px; color: rgba(255,255,255,0.75); }
.sb-cta-alt:hover { color: #fff; }
.sb-more-list { list-style: none; margin: 0 0 16px; padding: 0; }
.sb-more-list li + li { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.sb-more-item { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.sb-more-thumb {
width: 56px;
height: 56px;
flex-shrink: 0;
border-radius: 8px;
overflow: hidden;
background: var(--section-gray);
}
.sb-more-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-more-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sb-more-title {
font-size: 14.5px;
font-weight: 500;
color: var(--ink);
line-height: 1.35;
}
.sb-more-item:hover .sb-more-title { color: var(--accent); }
.sb-more-meta { font-size: 12.5px; font-weight: 300; color: var(--muted); }
.sb-author-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sb-author-top .avatar { width: 44px; height: 44px; font-size: 14px; }
.sb-author-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.sb-author-role { font-size: 13px; font-weight: 300; color: var(--muted); }
.sb-author-bio {
font-size: 14.5px;
font-weight: 300;
line-height: 1.6;
color: var(--muted);
margin-bottom: 14px;
}
@media (max-width: 1100px) {
.post-layout { grid-template-columns: 1fr; gap: 48px; }
.post-sidebar-sticky { position: static; }
.sb-toc { display: none; }
.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
.blog-feature { grid-template-columns: 1fr; }
.blog-feature-thumb { min-height: 0; aspect-ratio: 16 / 9; }
.blog-feature-body { padding: 28px 26px 32px; }
.post-header { padding: 20px 0 20px; }
.post-wrap .post-hero-img { aspect-ratio: 16 / 10; margin-bottom: 30px; }
}
@media (max-width: 640px) {
.blog-grid { grid-template-columns: 1fr; }
.post-main .post-body p,
.post-main .post-body li { font-size: 17px; }
.post-inline-cta { padding: 24px 22px; }
}
.form-notice {
display: none;
margin: 14px 0 0;
font-size: 14.5px;
line-height: 1.5;
color: var(--muted);
}
.form-notice--error {
color: #b32d2e;
}
.field-group input.error,
.field-group select.error,
.msg-area textarea.error,
input.error,
textarea.error,
select.error {
border-color: #e74c3c;
}
.btn-submit[disabled],
.btn-book[disabled],
.btn-submit-quote[disabled] {
opacity: 0.65;
cursor: progress;
}
.nav-actions {
display: flex;
align-items: center;
gap: 20px;
}
.nav-cta {
display: inline-flex;
align-items: center;
padding: 9px 18px;
border-radius: 999px;
background: #fff;
color: #111;
font-size: 14.5px;
font-weight: 600;
letter-spacing: -0.01em;
white-space: nowrap;
transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
background: var(--accent);
color: #fff;
transform: translateY(-1px);
}
.mobile-menu-cta {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 18px;
padding: 13px 26px;
border-radius: 999px;
background: #fff;
color: #111 !important;
font-size: 16px;
font-weight: 600;
}
.mobile-menu-cta:hover {
background: var(--accent);
color: #fff !important;
}
@media (max-width: 900px) {
.nav-actions {
display: flex;
gap: 12px;
margin-left: auto;
margin-right: 14px;
}
.nav-cta {
padding: 8px 15px;
font-size: 13.5px;
}
}
@media (max-width: 480px) {
.nav-cta {
display: none;
}
}
span.sidebar-tag {
cursor: default;
}
.portfolio-empty {
grid-column: 1 / -1;
padding: 48px 0;
text-align: center;
color: var(--muted);
font-size: 17px;
}
.sidebar-note {
margin: 0;
font-size: 14.5px;
line-height: 1.6;
color: var(--muted);
}
.sidebar-note a {
color: var(--body);
border-bottom: 1px solid rgba(0,0,0,0.22);
}
.sidebar-note a:hover {
color: var(--accent);
border-bottom-color: var(--accent);
}
.sidebar-list--links li {
line-height: 1.45;
}
.sidebar-list--links a {
color: var(--body);
}
.sidebar-list--links a:hover {
color: var(--accent);
}
.avatar-initials {
background: #f2f2f2;
}
.submit-row {
flex-wrap: wrap;
}
.submit-row .form-notice {
flex: 0 0 100%;
text-align: right;
margin-top: 10px;
}
.sidebar-list--links li::before {
content: '\2192';
color: var(--muted);
font-weight: 400;
font-size: 12px;
}
.sidebar-list--links li {
padding-top: 6px;
padding-bottom: 6px;
}
.sidebar-list--links a {
text-decoration: none;
}
.sidebar-list--links a:hover {
text-decoration: underline;
}
.form-layout > * + *,
.form-layout .form-left > * + *,
.form-layout .form-right > * + *,
.form-layout .field-group > * + *,
.form-layout .msg-area > * + *,
.form-layout .submit-row > * + * {
margin-block-start: 0;
}
.form-layout .field-label {
margin-bottom: 7px;
font-size: 15.5px;
font-weight: 400;
}
.form-layout .form-left {
gap: 20px;
}
.form-layout .msg-area .field-label {
margin-bottom: 7px;
}
.form-layout .msg-area {
gap: 0;
}
.yn-toggle {
flex-wrap: wrap;
}
.yn-btn {
width: auto;
min-width: 76px;
height: auto;
min-height: 44px;
padding: 10px 18px;
font-size: 14.5px;
font-weight: 600;
line-height: 1.35;
text-align: center;
}
.service-card--text .service-card-body {
padding: 26px 26px 28px;
display: flex;
flex-direction: column;
height: 100%;
}
.service-card-top {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 18px;
}
.service-card--text .service-card-arrow {
position: static;
margin-left: auto;
opacity: 1;
transform: none;
color: #C9CDD4;
transition: color 0.2s, transform 0.2s;
}
.service-card--text:hover .service-card-arrow {
color: var(--accent);
transform: translateX(3px);
opacity: 1;
}
.service-chip {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
border: 1px solid #E4E7EC;
background: var(--white);
border-radius: 20px;
padding: 5px 12px;
line-height: 1;
white-space: nowrap;
}
.service-chip--accent {
color: var(--accent);
border-color: rgba(89, 58, 233, 0.3);
background: rgba(89, 58, 233, 0.06);
}
.service-card--text .service-card-title {
font-size: 18px;
font-weight: 600;
padding-right: 0;
margin-bottom: 8px;
}
.service-card--text .service-card-desc {
margin-bottom: 0;
}
.ptc-recommended {
background: var(--accent);
}
.btn-primary,
.btn-submit,
.btn-book,
.btn-submit-quote {
background: var(--accent);
border-color: var(--accent);
color: #fff;
}
.btn-primary:hover,
.btn-submit:hover,
.btn-book:hover,
.btn-submit-quote:hover {
background: var(--accent-dark);
border-color: var(--accent-dark);
color: #fff;
box-shadow: 0 10px 24px rgba(89, 58, 233, 0.28);
}
.btn-primary:active,
.btn-submit:active,
.btn-book:active,
.btn-submit-quote:active {
box-shadow: 0 4px 12px rgba(89, 58, 233, 0.22);
}
.nav-cta {
background: var(--accent);
color: #fff;
}
.nav-cta:hover {
background: var(--accent-dark);
color: #fff;
}
.strip-1 { background: linear-gradient(135deg, #A18BF2, #8E74EF); }
.strip-2 { background: linear-gradient(135deg, #8E74EF, #7B5DED); }
.strip-3 { background: linear-gradient(135deg, #7B5DED, #6A4BEB); }
.strip-4 { background: linear-gradient(135deg, #6A4BEB, #593AE9); }
.strip-5 { background: linear-gradient(135deg, #593AE9, #4F33DD); }
.strip-6 { background: linear-gradient(135deg, #4A2FD6, #3F27C4); }
.b1 { background: #593AE9; }
.b2 { background: #6A4BEB; }
.b3 { background: #7B5DED; }
.b3 .bar-pct { color: rgba(255, 255, 255, 0.92); }
.b4 { background: #8E74EF; }
.b5 { background: #A18BF2; }
.b5 .bar-pct { color: rgba(17, 17, 17, 0.72); }
.footer-v2-heading { color: rgba(255, 255, 255, 0.62); }
.footer-v2-bottom .footer-copy,
.footer-copy { color: rgba(255, 255, 255, 0.62); }
.frameworks-title { color: #5C5C66; }
.avail-badge { color: #067A5F; }
.mobile-menu-cta {
background: var(--accent);
color: #fff;
}
.mobile-menu-cta:hover {
background: var(--accent-dark);
color: #fff;
}
.sc-whatsapp { color: #067A5F; }
.portfolio-card-image,
.portfolio-card-large .portfolio-card-image {
aspect-ratio: 16 / 10;
background: var(--section-gray);
box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.09);
}
.portfolio-card-large .portfolio-card-image {
box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.09), 0 4px 20px rgba(0, 0, 0, 0.07);
}
.portfolio-card-img { object-position: top center; }
.portfolio-card:hover .portfolio-card-img,
.portfolio-card-large:hover .portfolio-card-img { transform: scale(1.03); }
.portfolio-card-tags {
position: static;
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 12px;
}
.portfolio-tag {
background: transparent;
border: 1px solid #E4E7EC;
color: var(--muted);
font-size: 10.5px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
line-height: 1.4;
backdrop-filter: none;
}
.portfolio-card:hover .portfolio-card-title,
.portfolio-card-large:hover .portfolio-card-title { color: var(--accent); }
.portfolio-card-subtitle,
.portfolio-card-large .portfolio-card-subtitle {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 7px;
}
.portfolio-card {
background: transparent;
border: none;
border-radius: 0;
box-shadow: none;
}
.portfolio-card:hover {
transform: translateY(-4px);
border-color: transparent;
box-shadow: none;
}
.portfolio-card-large:hover { transform: translateY(-4px); }
.faq-list { gap: 10px; }
.faq-question { padding: 18px 22px; }
.faq-answer-inner { padding: 0 22px 20px; }
.faq-item > h3 {
margin: 0;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
.faq-item.open .faq-answer { max-height: 1200px; }
.project-faqs-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.project-faq-question { padding: 20px 22px; }
.project-faq-answer {
padding-left: 22px;
padding-right: 22px;
}
.project-faq-item.active .project-faq-answer {
max-height: 1200px;
padding-bottom: 22px;
}