@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #a78bfa;
}

.dropdown-icon {
    font-size: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #a78bfa;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 40px;
    height: 40px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: #999;
}

.phone-number {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.quote-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.2) 100%),
                url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 4px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 600px;
}

.experience-badge {
    position: relative;
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    position: relative;
}

.badge-content::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.badge-number sup {
    font-size: 24px;
    margin-left: 2px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
}

/* Home Showcase Section */
.home-showcase-section {
    padding: 100px 0 120px;
    background: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.3fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #f5e6d3 0%, #f9f0e3 100%);
    padding: 80px 60px;
    border-radius: 32px;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.showcase-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 2.8vw, 52px);
    line-height: 1.15;
    color: #1a1a1c;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
}

.play-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1c;
    font-family: 'Sora', sans-serif;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-photo {
    max-width: 100%;
    height: auto;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 500;
    color: #1a1a1c;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #1a1a1c;
}

.statistics-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats-heading {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1c;
    margin: 0 0 24px;
    letter-spacing: -0.3px;
}

.stats-bars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.stat-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1c;
    font-family: 'Sora', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #5a5a5d;
    font-weight: 500;
}

.bar-fill {
    height: 8px;
    border-radius: 4px;
}

/* Digital & Brand Design Section */
.digital-brand-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.digital-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.digital-brand-content {
    position: relative;
}

.decorative-lines {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 200px;
    height: 150px;
    pointer-events: none;
    animation: floatDecorate 4s ease-in-out infinite;
}

.curve-line {
    position: absolute;
    top: 0;
    right: 0;
    animation: curveFloat 5s ease-in-out infinite;
}

.arrow-line {
    position: absolute;
    top: 50px;
    right: 60px;
    animation: arrowSlide 4.5s ease-in-out infinite;
}

.digital-brand-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a1c;
    margin: 0 0 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.digital-brand-description {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.6;
    color: #5a5a5d;
    margin: 0 0 40px;
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 600;
    color: #1a1a1c;
    font-family: 'Sora', sans-serif;
    position: relative;
    padding-left: 0;
    animation: slideInLeft 0.6s ease-out backwards;
}

.service-item:nth-child(1) { animation-delay: 0.3s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }
.service-item:nth-child(4) { animation-delay: 0.6s; }

.service-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    background-clip: content-box;
    padding: 2px;
    color: url(#gradientPurplePink);
    stroke: url(#gradientPurplePink);
}

/* Right side - Circular image with overlay */
.digital-brand-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.circular-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    animation: imageZoom 0.8s ease-out;
}

.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-out;
}

.circular-image-wrapper:hover .circular-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.9) 100%);
    padding: 40px 30px 30px;
    color: #ffffff;
    text-align: center;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.overlay-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.overlay-email {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Home Services Section */
.home-services-section {
    padding: 110px 0 120px;
    background: #f3f3f4;
}

.home-services-header {
    text-align: center;
    margin-bottom: 64px;
}

.home-services-kicker {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-services-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 4.8vw, 76px);
    line-height: 1.08;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.home-service-card {
    --service-grad-1: #c8ef3c;
    --service-grad-2: #8de95e;
    background: #f7f7f7;
    border: 1px solid #dedede;
    border-radius: 28px;
    padding: 34px;
    height: 420px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transform: translateY(20px);
    animation: serviceCardReveal 0.75s ease forwards;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, var(--service-grad-1), var(--service-grad-2), #f8ffcb);
    background-size: 220% 220%;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.home-service-card > * {
    position: relative;
    z-index: 1;
}

.home-service-card:nth-child(1) {
    --service-grad-1: #b9ef3c;
    --service-grad-2: #6ce0a0;
}

.home-service-card:nth-child(2) {
    --service-grad-1: #7da2ff;
    --service-grad-2: #76d9ff;
}

.home-service-card:nth-child(3) {
    --service-grad-1: #8d78ff;
    --service-grad-2: #f08dbf;
}

.home-service-card:nth-child(4) {
    --service-grad-1: #ff9f57;
    --service-grad-2: #ffd86f;
}

.home-service-card:nth-child(5) {
    --service-grad-1: #00b7a7;
    --service-grad-2: #60de92;
}

.home-service-card:nth-child(6) {
    --service-grad-1: #ff7b9c;
    --service-grad-2: #ffba6b;
}

.home-service-card:nth-child(1) { animation-delay: 0.05s; }
.home-service-card:nth-child(2) { animation-delay: 0.15s; }
.home-service-card:nth-child(3) { animation-delay: 0.25s; }
.home-service-card:nth-child(4) { animation-delay: 0.35s; }
.home-service-card:nth-child(5) { animation-delay: 0.45s; }
.home-service-card:nth-child(6) { animation-delay: 0.55s; }

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.home-service-card.is-featured {
    border-color: rgba(255, 255, 255, 0.7);
}

.home-service-card.is-featured::before,
.home-service-card:hover::before {
    opacity: 1;
    animation: serviceGradientFlow 3.8s ease infinite;
}

.home-service-card.is-featured .home-service-image.mono {
    filter: grayscale(0%);
}

.home-service-card.switching {
    animation: serviceColorSwitch 0.45s ease;
}

.home-service-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}

.home-service-image.mono {
    filter: grayscale(100%);
}

.home-service-title {
    margin: 8px 0 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 2.3vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    color: #0f0f10;
    letter-spacing: -0.5px;
}

.home-service-description {
    margin: 0;
    font-size: clamp(20px, 1.15vw, 27px);
    line-height: 1.48;
    color: #2f2f34;
    max-width: 95%;
}

.home-service-link {
    margin-top: auto;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: #0f0f10;
    text-decoration: none;
    font-weight: 700;
}

.home-services-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.home-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 26px rgba(88, 98, 240, 0.22);
    animation: ctaPulseGlow 3s ease-in-out infinite;
}

/* Innovate Services Filter Section */
.innovate-services-section {
    padding: 0;
    background: radial-gradient(circle at 10% 20%, rgba(89, 95, 170, 0.2), transparent 38%),
        radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.16), transparent 40%),
        linear-gradient(135deg, #171c34 0%, #0f1327 100%);
    position: relative;
    overflow: hidden;
}

.innovate-services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 22px);
    opacity: 0.25;
    pointer-events: none;
}

.innovate-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 84px 0;
}

.innovate-kicker,
.brand-tech-kicker {
    margin: 0 0 16px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.innovate-title {
    margin: 0 0 20px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 4.5vw, 74px);
    color: #f4f6ff;
    line-height: 1.05;
    letter-spacing: -1px;
    font-weight: 900;
}

.innovate-description {
    margin: 0;
    max-width: 640px;
    color: #d8dcef;
    font-size: clamp(17px, 1.05vw, 24px);
    line-height: 1.55;
}

.innovate-right {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.service-filter-chip {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #f5f7ff;
    border-radius: 999px;
    padding: 14px 28px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(17px, 1vw, 22px);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service-filter-chip:hover {
    transform: translateY(-2px);
}

.service-filter-chip .chip-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #14172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.service-filter-chip.is-active {
    background: linear-gradient(135deg, #5862f0, #ec4899);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
    animation: chipGlow 2.4s ease-in-out infinite;
}

/* Brand Technology Section */
.brand-tech-section {
    padding: 96px 0 104px;
    background: #f3f3f4;
}

.brand-tech-header {
    text-align: center;
    margin-bottom: 44px;
}

.brand-tech-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 4.8vw, 76px);
    line-height: 1.08;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
}

.brand-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.tech-pill {
    border: 2px solid #d1d5db;
    border-radius: 999px;
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 1.6vw, 32px);
    font-weight: 700;
    color: #22242a;
    background: #f9f9fa;
    opacity: 0;
    transform: translateY(18px);
    animation: techPillIn 0.65s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-pill-logo {
    width: min(170px, 82%);
    height: 46px;
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 0;
}

.tech-pill:nth-child(1) { animation-delay: 0.05s; }
.tech-pill:nth-child(2) { animation-delay: 0.12s; }
.tech-pill:nth-child(3) { animation-delay: 0.19s; }
.tech-pill:nth-child(4) { animation-delay: 0.26s; }
.tech-pill:nth-child(5) { animation-delay: 0.33s; }
.tech-pill:nth-child(6) { animation-delay: 0.40s; }
.tech-pill:nth-child(7) { animation-delay: 0.47s; }
.tech-pill:nth-child(8) { animation-delay: 0.54s; }

.tech-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tech-vue { border-color: #37be83; }
.tech-angular { border-color: #f4434a; }
.tech-react { border-color: #23c2f0; }
.tech-elementor { border-color: #b01f67; }
.tech-python { border-color: #d0a208; }
.tech-javascript { border-color: #dcc10e; }
.tech-gcloud { border-color: #1f64ff; }
.tech-aws { border-color: #ff7a00; }

.brand-tech-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

/* Home Price + Client Wall Section */
.home-price-wall-section {
    background: #f3f3f4;
    padding-bottom: 90px;
}

.home-price-hero {
    background: radial-gradient(circle at 12% 22%, rgba(120, 130, 210, 0.2), transparent 36%),
        radial-gradient(circle at 86% 18%, rgba(236, 72, 153, 0.16), transparent 40%),
        linear-gradient(135deg, #171c34 0%, #0f1327 100%);
    overflow: hidden;
    position: relative;
}

.home-price-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 2px, transparent 2px, transparent 24px);
    opacity: 0.16;
    pointer-events: none;
}

.home-price-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 86px 0 92px;
}

.home-price-content {
    max-width: 620px;
}

.home-price-kicker {
    margin: 0 0 16px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-price-title {
    margin: 0 0 24px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(44px, 4.8vw, 82px);
    color: #f4f6ff;
    line-height: 1.05;
    letter-spacing: -1px;
    font-weight: 900;
}

.home-price-description {
    margin: 0 0 34px;
    color: #d8dcef;
    font-size: clamp(17px, 1.05vw, 24px);
    line-height: 1.56;
    max-width: 560px;
}

.home-price-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-price-phone {
    width: min(500px, 100%);
    border-radius: 28px;
    transform: perspective(900px) rotate(-8deg);
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.38);
    animation: phoneFloat 4.4s ease-in-out infinite;
}

.home-client-wall-wrap {
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

.home-client-wall {
    background: #020202;
    border-radius: 24px;
    padding: 48px 42px;
}

.home-client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px 24px;
}

.home-client-logo {
    border: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 92px;
    border-radius: 14px;
    color: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: clamp(16px, 1.1vw, 22px);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(16px);
    animation: logoWallReveal 0.7s ease forwards;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-client-logo:nth-child(1) { animation-delay: 0.06s; }
.home-client-logo:nth-child(2) { animation-delay: 0.12s; }
.home-client-logo:nth-child(3) { animation-delay: 0.18s; }
.home-client-logo:nth-child(4) { animation-delay: 0.24s; }
.home-client-logo:nth-child(5) { animation-delay: 0.30s; }
.home-client-logo:nth-child(6) { animation-delay: 0.36s; }
.home-client-logo:nth-child(7) { animation-delay: 0.42s; }
.home-client-logo:nth-child(8) { animation-delay: 0.48s; }
.home-client-logo:nth-child(9) { animation-delay: 0.54s; }
.home-client-logo:nth-child(10) { animation-delay: 0.60s; }
.home-client-logo:nth-child(11) { animation-delay: 0.66s; }
.home-client-logo:nth-child(12) { animation-delay: 0.72s; }
.home-client-logo:nth-child(13) { animation-delay: 0.78s; }
.home-client-logo:nth-child(14) { animation-delay: 0.84s; }
.home-client-logo:nth-child(15) { animation-delay: 0.90s; }

.home-client-logo:hover {
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.08);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatDecorate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes curveFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes imageZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceCardReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaPulseGlow {
    0%,
    100% {
        box-shadow: 0 10px 26px rgba(88, 98, 240, 0.22);
    }
    50% {
        box-shadow: 0 14px 34px rgba(236, 72, 153, 0.3);
    }
}

@keyframes serviceColorSwitch {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.01);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes serviceGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes chipGlow {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(88, 98, 240, 0.36);
    }
}

@keyframes techPillIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes phoneFloat {
    0%,
    100% {
        transform: perspective(900px) rotate(-8deg) translateY(0);
    }
    50% {
        transform: perspective(900px) rotate(-8deg) translateY(-12px);
    }
}

@keyframes logoWallReveal {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Page Styles */
.navbar-simple .nav-menu {
    display: none;
}

.navbar-simple .phone-info {
    display: none;
}

.navbar-simple .quote-btn {
    display: none;
}

.nav-actions-simple {
    display: flex;
    align-items: center;
    gap: 20px;
}

.grid-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.grid-btn:hover {
    transform: rotate(90deg);
}

.talk-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.talk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.about-hero {
    position: relative;
    align-items: flex-start;
}

.about-hero .container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 40px;
    padding-right: 40px;
}

.about-background {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%),
                url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center right !important;
}

.about-content {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
}

.about-text {
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.about-title {
    font-size: 80px;
    line-height: 1.1;
}

.about-description {
    max-width: 550px;
    margin-bottom: 40px;
    text-align: left;
}

.discover-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.discover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.breadcrumb {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10;
}

.breadcrumb-link {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #8b5cf6;
}

.breadcrumb-separator {
    color: #999999;
    font-size: 18px;
}

.breadcrumb-current {
    color: #999999;
    font-weight: 500;
}

/* About Content Section */
.about-page {
    background: #f3f3f4;
    color: #161616;
}

.about-content-section {
    background: #f3f3f4;
    padding: 150px 0 120px;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text-content {
    padding-right: 40px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.label-text {
    font-size: 14px;
    font-weight: bold;
    color: #8b5cf6;
    letter-spacing: 2px;
    margin-left: 5px;
}

.section-heading {
    font-size: 34px;
    line-height: 1.35;
    color: #2d2d2d;
    font-weight: 800;
    margin: 0;
}

.light-text {
    color: #b0b0b0;
    font-weight: 800;
}

.about-images {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.image-left {
    width: 280px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-right-wrapper {
    position: relative;
}

.decorative-plus {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    z-index: 2;
}

.plus-horizontal,
.plus-vertical {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plus-horizontal {
    width: 60px;
    height: 20px;
    top: 20px;
    left: 0;
}

.plus-vertical {
    width: 20px;
    height: 60px;
    top: 0;
    left: 20px;
}

.image-right {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Showcase Section */
.team-showcase-section {
    background: #ebebeb;
    padding: 80px 0 100px;
}

.team-showcase-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) 1.8fr;
    gap: 0;
    align-items: stretch;
}

.team-intro {
    background: #ebebeb;
    padding: 10px 36px 0 0;
    position: relative;
    z-index: 2;
}

.team-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 3.6vw, 56px);
    line-height: 1.05;
    color: #0f0f10;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 24px;
    max-width: 540px;
}

.team-description {
    font-size: 20px;
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.5;
    color: #242424;
    max-width: 580px;
    margin-bottom: 36px;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.team-card {
    background: #f5f5f5;
    padding: 34px 28px;
    min-height: 290px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    font-size: clamp(28px, 2.4vw, 44px);
    line-height: 1.05;
    color: #0e0e0f;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.team-card p {
    font-size: 20px;
    font-size: clamp(20px, 1.3vw, 24px);
    line-height: 1.45;
    color: #252525;
}

.team-visual {
    min-height: 760px;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Why Choose Section */
.why-choose-section {
    background: #ebebeb;
    padding: 20px 0 110px;
}

.why-choose-header {
    margin-bottom: 34px;
}

.why-choose-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.05;
    color: #0f0f10;
    margin: 0;
    text-transform: uppercase;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 30px;
    align-items: stretch;
}

.why-visual {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border-radius: 10px;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-note {
    position: absolute;
    left: 0;
    top: 60px;
    max-width: 420px;
    background: #f8f8f8;
    color: #1e1f21;
    font-size: 20px;
    line-height: 1.5;
    padding: 24px 22px;
}

.why-features {
    display: grid;
    gap: 28px;
    align-content: start;
}

.why-feature-card {
    background: #efefef;
    padding: 28px 30px;
    border-radius: 8px;
}

.feature-number {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    color: #8b5cf6;
    margin-bottom: 14px;
}

.why-feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 2.2vw, 42px);
    line-height: 1.05;
    color: #0f0f10;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.why-feature-card p {
    font-size: clamp(18px, 1.2vw, 24px);
    line-height: 1.45;
    color: #242529;
}

/* Stats Strip Section */
.stats-strip-section {
    background: #ebebeb;
    padding: 24px 0 90px;
}

.stats-strip-line {
    height: 1px;
    width: 100%;
    background: #bdbdbd;
    margin-bottom: 56px;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stats-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(52px, 5vw, 90px);
    line-height: 0.95;
    color: #07080a;
    font-weight: 700;
    letter-spacing: -1px;
}

.stats-label {
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: 1.2;
    color: #161719;
    max-width: 170px;
}

/* Video Showcase Section */
.video-showcase-section {
    background: #ebebeb;
    padding: 0 0 90px;
}

.video-showcase-frame {
    width: 100%;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}

.video-showcase-frame img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.25s ease;
}

.video-play-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    display: grid;
    place-items: center;
    animation: playPulse 2.8s ease-in-out infinite;
    transition: background 0.25s ease;
}

.video-play-core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-play-core svg {
    width: 38px;
    height: 38px;
    margin-left: 4px;
}

/* Brand Wall Section */
.brand-wall-section {
    background: #ebebeb;
    padding: 0 0 100px;
}

.brand-wall-panel {
    background: #050506;
    border-radius: 30px;
    padding: 58px 56px;
    overflow: hidden;
}

.brand-wall-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px 36px;
    align-items: center;
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    color: #f3f3f3;
    opacity: 0;
    transform: translateY(10px);
    animation: logoFadeUp 0.7s ease forwards, logoPulse 3.5s ease-in-out infinite;
    transition: transform 0.25s ease, color 0.25s ease;
}

.brand-logo svg,
.brand-logo img {
    width: min(190px, 100%);
    height: 92px;
}

.brand-logo-image {
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-logo:hover .brand-logo-image {
    opacity: 1;
    transform: scale(1.04);
}

.brand-logo .logo-word {
    fill: currentColor;
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.brand-logo .logo-sub {
    fill: currentColor;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
}

.brand-logo .logo-dark {
    fill: #111111;
}

.brand-logo:nth-child(1),
.brand-logo:nth-child(6),
.brand-logo:nth-child(11) { 
    animation-delay: 0.05s, 0.1s; 
}

.brand-logo:nth-child(2),
.brand-logo:nth-child(7),
.brand-logo:nth-child(12) { 
    animation-delay: 0.12s, 0.4s; 
}

.brand-logo:nth-child(3),
.brand-logo:nth-child(8),
.brand-logo:nth-child(13) { 
    animation-delay: 0.2s, 0.7s; 
}

.brand-logo:nth-child(4),
.brand-logo:nth-child(9),
.brand-logo:nth-child(14) { 
    animation-delay: 0.28s, 1s; 
}

.brand-logo:nth-child(5),
.brand-logo:nth-child(10),
.brand-logo:nth-child(15) { 
    animation-delay: 0.36s, 1.3s; 
}

.brand-logo:hover {
    transform: translateY(-4px);
    color: #ffffff;
}


@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.88;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}
@keyframes logoFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Awards Timeline Section */
.awards-timeline-section {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    padding: 110px 0 130px;
    position: relative;
}

.awards-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6 20%, #ec4899 80%, transparent);
}

.awards-header {
    margin-bottom: 48px;
    text-align: center;
}

.awards-main-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 4.5vw, 72px);
    line-height: 1.15;
    color: #0f0f10;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1a1a1c 0%, #4a4a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.awards-divider {
    height: 2px;
    width: 220px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    margin: 36px auto 70px;
    border-radius: 2px;
}

.awards-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.award-item {
    display: grid;
    grid-template-columns: 160px 1fr 80px;
    gap: 56px;
    align-items: center;
    padding: 48px 36px;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: awardSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-item:hover::before {
    opacity: 1;
}

.award-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.award-item:nth-child(1) {
    animation-delay: 0.15s;
}

.award-item:nth-child(2) {
    animation-delay: 0.3s;
}

.award-item:nth-child(3) {
    animation-delay: 0.45s;
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-year {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.9;
    font-weight: 900;
    color: #1a1a1c;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.award-item:hover .award-year {
    transform: scale(1.08);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.award-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.25;
    color: #1a1a1c;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.award-description {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
    color: #5a5a5d;
    margin: 0;
    max-width: 620px;
}

.award-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.award-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-arrow:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
}

.award-arrow:hover svg {
    transform: translateX(3px);
}

@keyframes awardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.video-play-btn:hover .video-play-ring {
    background: rgba(255, 255, 255, 0.58);
}

.video-play-btn:hover .video-play-core {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

@keyframes playPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.92;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* Certified Features Section */
.certified-features-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f5e6d3 0%, #f9f0e3 100%);
    position: relative;
}

.certified-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.certified-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.certified-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.certified-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.certified-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.certified-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.2;
    font-weight: 900;
    color: #1a1a1c;
    margin: 0;
    letter-spacing: -1px;
}

.certified-description {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
    color: #5a5a5d;
    margin: 0;
    max-width: 560px;
}

.certified-features {
    display: flex;
    gap: 40px;
    margin-top: 8px;
}

.certified-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 500;
    color: #1a1a1c;
}

.feature-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.certified-hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    width: fit-content;
    margin-top: 12px;
}

.phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.certified-hotline-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a2332, #2d3748);
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 380px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, rgba(88, 98, 240, 0.35), rgba(236, 72, 153, 0.35));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(139, 92, 246, 0.5);
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    padding: 8px 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.footer-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-email:hover {
    color: #ec4899;
}

.footer-bottom {
    padding: 32px 0;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .nav-menu {
        gap: 25px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 40px;
    }

    .showcase-title {
        font-size: 44px;
    }

    .digital-brand-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .digital-brand-title {
        font-size: 42px;
    }

    .decorative-lines {
        right: -40px;
        width: 150px;
        height: 120px;
    }

    .team-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-intro {
        padding: 0;
    }

    .team-visual {
        min-height: 520px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 520px;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-showcase-frame,
    .video-showcase-frame img {
        min-height: 520px;
    }

    .brand-wall-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .award-item {
        grid-template-columns: 130px 1fr 70px;
        gap: 40px;
        padding: 40px 32px;
    }

    .certified-grid {
        gap: 60px;
    }

    .certified-badge {
        width: 160px;
        height: 160px;
        bottom: -30px;
        left: -30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .phone-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

    .showcase-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto;
    }

    .about-content {
        text-align: left;
        align-items: flex-start;
    }

    .about-description {
        margin: 0 0 40px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .section-heading {
        font-size: 30px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-left {
        width: 100%;
        height: 400px;
    }

    .team-cards {
        grid-template-columns: 1fr;
    }

    .why-note {
        max-width: 360px;
        font-size: 18px;
    }

    .stats-number {
        font-size: 64px;
    }

    .stats-label {
        font-size: 22px;
    }

    .video-play-ring {
        width: 190px;
        height: 190px;
    }

    .video-play-core {
        width: 130px;
        height: 130px;
    }

    .brand-wall-grid {
        gap: 24px;
    }

    .awards-timeline-section {
        padding: 80px 0 100px;
    }

    .awards-header {
        margin-bottom: 40px;
    }

    .awards-divider {
        width: 180px;
        margin: 32px auto 60px;
    }

    .award-item {
        grid-template-columns: 110px 1fr 56px;
        gap: 32px;
        padding: 36px 28px;
        margin-bottom: 20px;
    }

    .award-year {
        font-size: 62px;
    }

    .award-arrow {
        width: 56px;
        height: 56px;
    }

    .award-arrow svg {
        width: 20px;
        height: 20px;
    }

    .certified-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .certified-image-wrapper {
        min-height: 450px;
    }

    .certified-badge {
        width: 140px;
        height: 140px;
    }

    .certified-features {
        gap: 30px;
    }

    .digital-brand-section {
        padding: 90px 0;
    }

    .digital-brand-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .digital-brand-title {
        font-size: 36px;
    }

    .home-services-title {
        font-size: 58px;
    }

    .home-services-grid {
        gap: 22px;
    }

    .home-service-card {
        padding: 28px;
    }

    .home-service-link,
    .home-services-cta {
        font-size: 24px;
    }

    .digital-brand-description {
        font-size: 15px;
    }

    .service-item {
        font-size: 15px;
    }

    .circular-image-wrapper {
        max-width: 450px;
    }

    .overlay-title {
        font-size: 24px;
    }

    .overlay-email {
        font-size: 13px;
    }

    .home-services-section {
        padding: 90px 0 100px;
    }

    .home-services-title {
        font-size: 48px;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-service-card {
        min-height: 340px;
    }

    .home-service-title {
        font-size: 40px;
    }

    .home-service-description {
        font-size: 20px;
    }

    .home-service-link,
    .home-services-cta {
        font-size: 20px;
    }

    .innovate-services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 66px 0;
    }

    .innovate-title {
        font-size: 52px;
    }

    .innovate-description {
        font-size: 20px;
    }

    .brand-tech-section {
        padding: 84px 0 94px;
    }

    .brand-tech-title {
        font-size: 52px;
    }

    .brand-tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-pill {
        min-height: 88px;
        font-size: 24px;
    }

    .tech-pill-logo {
        width: min(150px, 84%);
        height: 42px;
    }

    .home-price-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 68px 0 76px;
    }

    .home-price-title {
        font-size: 56px;
    }

    .home-price-description {
        font-size: 20px;
    }

    .home-price-visual {
        justify-content: center;
    }

    .home-price-phone {
        width: min(430px, 100%);
    }

    .home-client-wall-wrap {
        margin-top: -38px;
    }

    .home-client-wall {
        padding: 36px 30px;
    }

    .home-client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home-client-logo {
        min-height: 78px;
        font-size: 16px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .footer-logo-img {
        height: 90px;
    }
    
    .home-showcase-section {
        padding: 70px 0 80px;
    }

    .showcase-grid {
        padding: 40px 24px;
        gap: 40px;
    }

    .showcase-title {
        font-size: 30px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn svg {
        width: 24px;
        height: 24px;
    }

    .feature-item {
        font-size: 15px;
    }

    .statistics-box {
        padding: 24px;
    }

    .stats-heading {
        font-size: 18px;
    }

    .stat-value {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .about-title {
        font-size: 48px;
    }

    .about-hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .breadcrumb {
        right: 20px;
        bottom: 20px;
        padding: 12px 20px;
    }
    
    .about-content-section {
        padding: 80px 0;
    }

    .team-showcase-section {
        padding: 60px 0 80px;
    }

    .team-visual {
        min-height: 430px;
    }

    .why-choose-section {
        padding: 10px 0 80px;
    }

    .why-visual {
        min-height: 430px;
    }

    .why-note {
        position: static;
        max-width: 100%;
        margin-top: 14px;
    }

    .stats-strip-section {
        padding: 20px 0 70px;
    }

    .stats-strip-line {
        margin-bottom: 38px;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-showcase-section {
        padding: 0 0 70px;
    }

    .video-showcase-frame,
    .video-showcase-frame img {
        min-height: 360px;
    }

    .brand-wall-section {
        padding: 0 0 70px;
    }

    .brand-wall-panel {
        border-radius: 18px;
        padding: 34px 26px;
    }

    .brand-wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .awards-timeline-section {
        padding: 70px 0 80px;
    }

    .awards-header {
        margin-bottom: 36px;
    }

    .awards-divider {
        width: 160px;
        margin: 28px auto 50px;
    }

    .awards-timeline {
        gap: 0;
    }

    .award-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 24px;
        text-align: left;
        margin-bottom: 18px;
    }

    .award-year {
        font-size: 52px;
    }

    .award-arrow {
        justify-self: start;
        width: 52px;
        height: 52px;
    }

    .award-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .image-left {
        height: 350px;
    }
    
    .image-right {
        height: 400px;
    }
    
    .decorative-plus {
        width: 50px;
        height: 50px;
        top: -20px;
        left: -20px;
    }
    
    .plus-horizontal {
        width: 50px;
        height: 16px;
        top: 17px;
    }
    
    .plus-vertical {
        width: 16px;
        height: 50px;
        left: 17px;
    }

    .digital-brand-section {
        padding: 80px 0;
    }

    .digital-brand-grid {
        gap: 40px;
    }

    .digital-brand-title {
        font-size: 32px;
    }

    .decorative-lines {
        top: -30px;
        right: -40px;
        width: 130px;
        height: 100px;
    }

    .digital-brand-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .services-list {
        gap: 14px;
    }

    .service-item {
        font-size: 14px;
    }

    .circular-image-wrapper {
        max-width: 380px;
    }

    .image-overlay {
        padding: 30px 24px 24px;
    }

    .overlay-title {
        font-size: 22px;
    }

    .overlay-email {
        font-size: 12px;
    }

    .home-services-section {
        padding: 80px 0 90px;
    }

    .home-services-header {
        margin-bottom: 44px;
    }

    .home-services-kicker {
        font-size: 14px;
    }

    .home-services-title {
        font-size: 40px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: unset;
        padding: 24px;
    }

    .home-service-image {
        height: 156px;
    }

    .home-service-title {
        font-size: 34px;
    }

    .home-service-description {
        font-size: 18px;
    }

    .home-service-link,
    .home-services-cta {
        font-size: 18px;
    }

    .innovate-services-grid {
        padding: 56px 0;
    }

    .innovate-kicker,
    .brand-tech-kicker {
        font-size: 14px;
    }

    .innovate-title {
        font-size: 42px;
    }

    .innovate-description {
        font-size: 17px;
    }

    .innovate-right {
        gap: 12px;
    }

    .service-filter-chip {
        padding: 12px 20px;
        font-size: 16px;
    }

    .service-filter-chip .chip-dot {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .brand-tech-section {
        padding: 72px 0 82px;
    }

    .brand-tech-header {
        margin-bottom: 32px;
    }

    .brand-tech-title {
        font-size: 40px;
    }

    .brand-tech-grid {
        gap: 16px;
    }

    .tech-pill {
        min-height: 78px;
        font-size: 20px;
    }

    .tech-pill-logo {
        width: min(130px, 80%);
        height: 36px;
    }

    .home-price-wall-section {
        padding-bottom: 74px;
    }

    .home-price-grid {
        padding: 58px 0 68px;
    }

    .home-price-kicker {
        font-size: 14px;
    }

    .home-price-title {
        font-size: 42px;
    }

    .home-price-description {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .home-price-phone {
        width: min(340px, 100%);
    }

    .home-client-wall {
        border-radius: 18px;
        padding: 26px 22px;
    }

    .home-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-client-logo {
        min-height: 64px;
        border-radius: 10px;
        font-size: 14px;
    }
    
    .quote-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .experience-badge {
        width: 160px;
        height: 160px;
    }
    
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-images {
        gap: 20px;
    }
    
    .image-left {
        height: 300px;
    }
    
    .image-right {
        height: 350px;
    }
    .badge-number {
        font-size: 38px;
    }
    
    .badge-text {
        font-size: 14px;
    }

    .certified-features-section {
        padding: 70px 0 80px;
    }

    .certified-image-wrapper {
        min-height: 380px;
    }

    .certified-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -20px;
    }

    .certified-features {
        flex-direction: column;
        gap: 18px;
    }

    .certified-hotline-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: auto;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 55px;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .certified-features-section {
        padding: 50px 0 60px;
    }

    .certified-grid {
        gap: 36px;
    }

    .certified-image-wrapper {
        min-height: 300px;
    }

    .certified-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        left: -15px;
    }

    .certified-heading {
        font-size: 30px;
    }

    .certified-description {
        font-size: 15px;
    }

    .certified-hotline-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-description,
    .newsletter-description {
        font-size: 14px;
    }

    .social-link,
    .footer-menu li a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .copyright {
        font-size: 13px;
    }

    .home-showcase-section {
        padding: 60px 0 70px;
    }

    .showcase-grid {
        padding: 30px 20px;
        gap: 32px;
    }

    .showcase-title {
        font-size: 26px;
    }

    .play-btn {
        width: 52px;
        height: 52px;
    }

    .play-btn svg {
        width: 20px;
        height: 20px;
    }

    .feature-item {
        font-size: 14px;
    }

    .statistics-box {
        padding: 20px;
    }

    .stats-heading {
        font-size: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .digital-brand-section {
        padding: 60px 0 70px;
    }

    .digital-brand-grid {
        gap: 30px;
    }

    .digital-brand-title {
        font-size: 26px;
    }

    .decorative-lines {
        top: -25px;
        right: -30px;
        width: 110px;
        height: 85px;
    }

    .digital-brand-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .services-list {
        gap: 12px;
    }

    .service-item {
        font-size: 13px;
    }

    .circular-image-wrapper {
        max-width: 320px;
    }

    .image-overlay {
        padding: 24px 20px 20px;
    }

    .overlay-title {
        font-size: 18px;
    }

    .overlay-email {
        font-size: 11px;
    }

    .home-services-section {
        padding: 64px 0 76px;
    }

    .home-services-header {
        margin-bottom: 32px;
    }

    .home-services-kicker {
        font-size: 12px;
    }

    .home-services-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .home-services-grid {
        gap: 16px;
    }

    .home-service-card {
        border-radius: 20px;
        padding: 20px;
        gap: 14px;
    }

    .home-service-image {
        height: 130px;
    }

    .home-service-title {
        font-size: 28px;
    }

    .home-service-description {
        font-size: 16px;
        max-width: 100%;
    }

    .home-service-link,
    .home-services-cta {
        font-size: 16px;
    }

    .home-services-cta {
        padding: 14px 28px;
    }

    .innovate-services-grid {
        gap: 22px;
        padding: 46px 0;
    }

    .innovate-title {
        font-size: 32px;
    }

    .innovate-description {
        font-size: 15px;
    }

    .service-filter-chip {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px 16px;
    }

    .brand-tech-section {
        padding: 60px 0 70px;
    }

    .brand-tech-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .brand-tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-pill {
        min-height: 68px;
        font-size: 18px;
    }

    .tech-pill-logo {
        width: min(116px, 76%);
        height: 30px;
    }

    .home-price-wall-section {
        padding-bottom: 62px;
    }

    .home-price-grid {
        padding: 44px 0 58px;
        gap: 20px;
    }

    .home-price-title {
        font-size: 34px;
    }

    .home-price-description {
        font-size: 15px;
    }

    .home-price-phone {
        width: min(280px, 100%);
        border-radius: 20px;
    }

    .home-client-wall-wrap {
        margin-top: -26px;
    }

    .home-client-wall {
        border-radius: 14px;
        padding: 18px 16px;
    }

    .home-client-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-client-logo {
        min-height: 56px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .about-title {
        font-size: 36px;
    }

    .team-title {
        font-size: 30px;
    }

    .team-description {
        font-size: 16px;
    }

    .team-card h3 {
        font-size: 32px;
    }

    .team-card p {
        font-size: 18px;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-feature-card h3 {
        font-size: 30px;
    }

    .why-feature-card p {
        font-size: 17px;
    }

    .feature-number {
        font-size: 24px;
    }

    .stats-number {
        font-size: 52px;
    }

    .stats-label {
        font-size: 18px;
        max-width: 150px;
    }

    .video-play-ring {
        width: 150px;
        height: 150px;
    }

    .video-play-core {
        width: 100px;
        height: 100px;
    }

    .video-play-core svg {
        width: 28px;
        height: 28px;
    }

    .brand-wall-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brand-logo svg,
    .brand-logo img {
        width: min(170px, 100%);
        height: 82px;
    }

    .awards-timeline-section {
        padding: 60px 0 70px;
    }

    .awards-main-title {
        font-size: 36px;
    }

    .awards-divider {
        width: 140px;
        margin: 24px auto 44px;
    }

    .award-item {
        padding: 28px 20px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .award-year {
        font-size: 44px;
    }

    .award-title {
        font-size: 22px;
    }

    .award-description {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .search-btn {
        display: none;
    }
    
    .talk-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .breadcrumb {
        font-size: 12px;
        padding: 10px 15px;
    }

    .section-heading {
        font-size: 22px;
    }
}

/* Contact Page */
.contact-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(88, 98, 240, 0.2), transparent 36%),
        radial-gradient(circle at 86% 14%, rgba(236, 72, 153, 0.18), transparent 34%),
        linear-gradient(180deg, #f8f4ff 0%, #fff6eb 52%, #f8fbff 100%);
    color: #1a1a1c;
}

.contact-info-section {
    padding: 140px 0 90px;
}

.contact-info-grid {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(160deg, #ffffff 0%, #f5f1ff 45%, #eef8ff 100%);
    min-height: 280px;
    padding: 44px 40px;
    position: relative;
    border: 1px solid rgba(150, 124, 255, 0.16);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 2.4vw, 42px);
    color: #060606;
    margin: 8px 0 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 1.15;
}

.contact-info-card p {
    color: #2a2a30;
    font-size: clamp(18px, 1.4vw, 34px);
    line-height: 1.55;
    margin: 0;
    letter-spacing: -0.2px;
}

.contact-card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    color: #5c52ff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info-card:nth-child(1) .contact-card-icon {
    color: #4f8cff;
}

.contact-info-card:nth-child(2) .contact-card-icon {
    color: #ff5c7a;
}

.contact-info-card:nth-child(3) .contact-card-icon {
    color: #0ea67d;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(88, 98, 240, 0.18);
}

.contact-info-card:hover .contact-card-icon {
    transform: translateY(-3px) scale(1.06);
}

.contact-form-showcase-section {
    padding: 20px 0 100px;
}

.contact-form-showcase-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.3fr;
    background: linear-gradient(135deg, #ffffff, #f1ebff 48%, #ffeef7);
    border-radius: 24px;
    border: 1px solid rgba(147, 121, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 26px 56px rgba(36, 33, 71, 0.12);
}

.contact-form-visual {
    min-height: 760px;
}

.contact-form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(115%) contrast(102%);
}

.contact-form-content {
    padding: 70px 50px 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));
}

.contact-form-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1.2;
    color: #1a1532;
    margin: 0 0 36px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
}

.contact-form-fields label {
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    color: #5a3bb9;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form-fields input,
.contact-form-fields textarea {
    border: 1px solid #d8d3ef;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.4;
    color: #1a1a1c;
    padding: 14px 16px;
    margin-bottom: 22px;
    outline: none;
    font-family: 'Arial', 'Helvetica', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-fields textarea {
    resize: vertical;
    min-height: 60px;
    margin-bottom: 32px;
}

.contact-form-fields input::placeholder,
.contact-form-fields textarea::placeholder {
    color: #b4b4b6;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.contact-submit-btn {
    border: none;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 16px 44px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.2);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.contact-form-status {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.4;
    min-height: 22px;
    color: #5f5f62;
}

.contact-form-status.is-success {
    color: #2f855a;
}

.contact-form-status.is-error {
    color: #c53030;
}

.hidden-botcheck {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .contact-info-card {
        padding: 36px 30px;
        min-height: 240px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form-content {
        padding: 70px 40px 56px;
    }

    .contact-form-visual {
        min-height: 680px;
    }

    .contact-submit-btn {
        font-size: 15px;
        padding: 14px 38px;
    }
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        min-height: 200px;
    }

    .contact-form-showcase-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-visual {
        min-height: 460px;
    }

    .contact-form-content {
        padding: 54px 30px 48px;
    }

    .contact-form-title {
        margin-bottom: 34px;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 120px 0 60px;
    }

    .contact-info-grid {
        padding: 14px;
        gap: 14px;
    }

    .contact-info-card {
        padding: 24px 22px;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
        top: 14px;
        right: 14px;
    }

    .contact-form-showcase-section {
        padding: 10px 0 60px;
    }

    .contact-form-visual {
        min-height: 320px;
    }

    .contact-form-content {
        padding: 34px 20px 34px;
    }

    .contact-form-title {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .contact-form-fields label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .contact-form-fields input,
    .contact-form-fields textarea {
        font-size: 14px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .contact-form-fields textarea {
        margin-bottom: 24px;
        min-height: 50px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 24px;
    }
}

/* Packages Page */
.packages-page {
    background: #f3f3f4;
    color: #161616;
}

.packages-pricing-section {
    padding: 150px 0 110px;
}

.packages-pricing-header {
    text-align: center;
    margin-bottom: 44px;
}

.packages-kicker {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.packages-main-title {
    margin: 0 0 28px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 4.8vw, 80px);
    font-weight: 900;
    line-height: 1.08;
    color: #111111;
    letter-spacing: -1px;
}

.pricing-cycle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.cycle-label {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #777777;
    transition: color 0.25s ease;
}

.cycle-label.is-active {
    color: #121212;
}

.cycle-track {
    position: relative;
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: #44c74b;
    display: inline-flex;
    align-items: center;
    padding: 3px;
}

.cycle-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.pricing-cycle.is-yearly .cycle-thumb {
    transform: translateX(20px);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: #eceff1;
    border-radius: 22px;
    padding: 30px 34px 34px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: background 0.35s ease, color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 900px;
}

.pricing-card-active {
    background: linear-gradient(135deg, #1a1a1f, #212125);
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-card.pricing-switching {
    animation: pricingColorShift 0.35s ease;
}

.pricing-save {
    margin-left: auto;
    width: fit-content;
    background: #dfdfdf;
    color: #2b2b2b;
    border-radius: 999px;
    padding: 8px 18px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.pricing-offer {
    position: absolute;
    top: -22px;
    left: 34px;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.pricing-offer::after {
    content: '';
    position: absolute;
    right: 22px;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #b347d7;
}

.pricing-plan {
    margin: 24px 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 2.6vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-amount {
    margin: 0;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.price-value {
    font-size: clamp(58px, 4vw, 92px);
    line-height: 0.95;
    letter-spacing: -1px;
    font-weight: 800;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-value::before {
    content: '$';
    font-size: 0.55em;
    margin-right: 2px;
}

.per-month {
    font-size: 34px;
    font-weight: 600;
    color: #3d3d42;
    margin-bottom: 8px;
}

.pricing-card-active .per-month {
    color: #c7c7cf;
}

.pricing-divider {
    height: 1px;
    background: rgba(20, 20, 20, 0.32);
    margin: 24px 0;
}

.pricing-card-active .pricing-divider {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 14px;
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    animation: featuresFadeIn 0.6s ease;
}

.pricing-features::-webkit-scrollbar {
    width: 6px;
}

.pricing-features::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 999px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #5862f0, #ec4899);
    border-radius: 999px;
}

.pricing-features::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4a52d0, #d43980);
}

.pricing-card-active .pricing-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes featuresFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-features li {
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '\2713';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2c2c2f;
    color: #ffffff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-active .pricing-features li::before {
    background: linear-gradient(135deg, #5862f0, #ec4899);
}

.pricing-card-active .pricing-btn {
    background: linear-gradient(135deg, #5862f0, #ec4899);
}

.pricing-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #2f2f33;
    color: #ffffff;
    padding: 16px 22px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.35s ease;
}

.pricing-btn-featured {
    background: linear-gradient(135deg, #5862f0, #ec4899);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

@keyframes pricingColorShift {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.01);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
}

@media (max-width: 1200px) {
    .pricing-cards-grid {
        gap: 22px;
    }

    .pricing-card {
        padding: 26px 24px 28px;
    }

    .pricing-offer {
        left: 24px;
    }
}

@media (max-width: 992px) {
    .packages-pricing-section {
        padding: 130px 0 90px;
    }

    .packages-main-title {
        font-size: 56px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .packages-pricing-section {
        padding: 120px 0 80px;
    }

    .packages-kicker {
        font-size: 14px;
    }

    .packages-main-title {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .cycle-label {
        font-size: 16px;
    }

    .price-value {
        font-size: 72px;
    }

    .per-month {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .packages-pricing-section {
        padding: 110px 0 70px;
    }

    .packages-main-title {
        font-size: 34px;
    }

    .pricing-card {
        padding: 24px 18px 22px;
    }

    .pricing-offer {
        left: 18px;
        top: -18px;
        font-size: 15px;
        padding: 10px 14px;
    }

    .pricing-plan {
        font-size: 38px;
    }

    .price-value {
        font-size: 60px;
    }


/* About page opening spacing alignment with other pages */
@media (max-width: 992px) {
    .about-page .about-content-section {
        padding: 130px 0 90px;
    }
}

@media (max-width: 768px) {
    .about-page .about-content-section {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .about-page .about-content-section {
        padding: 110px 0 70px;
    }
}
    .per-month {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .pricing-features li {
        font-size: 15px;
    }

    .pricing-btn {
        font-size: 16px;
    }
}

/* Home Blog Section */
.home-blog-section {
    background: #f3f3f4;
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
}

.home-blog-section::before,
.home-blog-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 46% 54% 52% 48% / 56% 44% 56% 44%;
    pointer-events: none;
}

.home-blog-section::before {
    top: -120px;
    left: -140px;
}

.home-blog-section::after {
    right: -180px;
    bottom: -100px;
}

.home-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-blog-kicker {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-blog-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 4.8vw, 78px);
    line-height: 1.08;
    font-weight: 900;
    color: #0e0e10;
    letter-spacing: -1px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.home-blog-card {
    opacity: 0;
    transform: translateY(20px);
    animation: blogCardIn 0.7s ease forwards;
}

.home-blog-card:nth-child(1) {
    animation-delay: 0.08s;
}

.home-blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.home-blog-media-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    background-image: linear-gradient(#f3f3f4, #f3f3f4), linear-gradient(135deg, #5862f0, #ec4899);
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-blog-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.home-blog-date {
    position: absolute;
    left: 18px;
    bottom: -14px;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
}

.home-blog-card-title {
    margin: 28px 8px 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 2.15vw, 40px);
    line-height: 1.18;
    font-weight: 800;
    color: #101113;
}

.home-blog-card:hover .home-blog-media-wrap {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

@keyframes blogCardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 992px) {
    .home-blog-title {
        font-size: 56px;
    }

    .home-blog-grid {
        gap: 22px;
    }

    .home-blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 20px 0 80px;
    }

    .home-blog-kicker {
        font-size: 14px;
    }

    .home-blog-title {
        font-size: 44px;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-image {
        height: 280px;
    }

    .home-blog-card-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .home-blog-section {
        padding: 10px 0 66px;
    }

    .home-blog-title {
        font-size: 34px;
    }

    .home-blog-image {
        height: 220px;
    }

    .home-blog-date {
        font-size: 12px;
        padding: 8px 12px;
    }

    .home-blog-card-title {
        font-size: 28px;
        margin-left: 4px;
        margin-right: 4px;
    }
}

/* Home Client Review Section */
.home-review-section {
    background: #f3f3f4;
    padding: 20px 0 110px;
}

.home-review-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 42px;
}

.home-review-kicker {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #5862f0, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-review-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 4.8vw, 84px);
    line-height: 1.05;
    font-weight: 900;
    color: #0f1011;
    letter-spacing: -1px;
}

.home-review-controls {
    display: flex;
    gap: 12px;
    margin-top: 38px;
}

.review-arrow-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #d5d5d8;
    background: transparent;
    color: #111111;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.review-arrow-btn.is-active,
.review-arrow-btn:hover {
    border-color: #111111;
    background: #ffffff;
    transform: translateY(-2px);
}

.home-review-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.home-review-card {
    background: #f3f3f4;
    border: 1px solid #d6d6d9;
    border-radius: 18px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 470px;
    opacity: 0;
    transform: translateY(16px);
    animation: reviewCardIn 0.65s ease forwards;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-review-card:nth-child(1) { animation-delay: 0.08s; }
.home-review-card:nth-child(2) { animation-delay: 0.16s; }
.home-review-card:nth-child(3) { animation-delay: 0.24s; }

.home-review-card.review-card-active,
.home-review-card:hover {
    border-color: #bdbdc3;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.home-review-card.review-card-switching {
    animation: reviewCardSwitch 0.38s ease;
}

.home-review-stars {
    color: #ff9d2f;
    letter-spacing: 2px;
    font-size: 24px;
}

.home-review-card-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 2.1vw, 48px);
    line-height: 1.1;
    color: #111214;
}

.home-review-text {
    margin: 0;
    font-size: clamp(18px, 1.08vw, 24px);
    line-height: 1.5;
    color: #34363a;
}

.home-review-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-review-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
}

.home-review-name {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 1.6vw, 34px);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
}

.home-review-role {
    margin: 2px 0 0;
    font-size: 18px;
    color: #64666d;
}

@keyframes reviewCardIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes reviewCardSwitch {
    0% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(6px) scale(1.01);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 992px) {
    .home-review-top {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .home-review-controls {
        margin-top: 0;
    }

    .home-review-track {
        grid-template-columns: 1fr;
    }

    .home-review-card {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .home-review-section {
        padding: 10px 0 90px;
    }

    .home-review-kicker {
        font-size: 14px;
    }

    .home-review-title {
        font-size: 46px;
    }

    .review-arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .home-review-card {
        padding: 26px;
    }

    .home-review-avatar {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 480px) {
    .home-review-section {
        padding: 0 0 70px;
    }

    .home-review-title {
        font-size: 34px;
    }

    .home-review-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .review-arrow-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .home-review-card {
        padding: 20px;
        gap: 14px;
    }

    .home-review-stars {
        font-size: 20px;
    }

    .home-review-card-title {
        font-size: 30px;
    }

    .home-review-text {
        font-size: 16px;
    }

    .home-review-name {
        font-size: 24px;
    }

    .home-review-role {
        font-size: 15px;
    }
}
