/* ===================================
   Leak Design - Main Stylesheet
   Font: Bruno Ace, Inter
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #4f46e5;
    --accent-color: #ffd93d;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: "Bruno Ace", cursive;
    --font-body: "Inter", sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-heading);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: #333;
}

.btn-outline {
    /* background-color: #000;
    color: #fff; */
    border-radius: 16px;
    border: 1px solid #000;
    padding: 16px 32px;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    /* box-shadow: 0 4px 0 0 #ff6b4a; */
}

.btn-outline:hover {
    background-color: #000;
    border-color: #fff;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 0 0 #000;
}

.btn-outline:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 #000;
}

.btn-outline-full {
    background-color: #000;
    color: #fff;
    border-radius: 16px;
    border: 1px solid #fff;
    padding: 16px 32px;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    /* box-shadow: 0 4px 0 0 #ff6b4a; */
}

.btn-outline-full:hover {
    background-color: #fff;
    border-color: #000;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 6px 0 0 #000;
}

.btn-outline-full:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 #000;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-text span {
    display: inline-flex;
    align-items: center;
    /* overflow: hidden; */
    width: 0;
    opacity: 0;
    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.btn-text span img {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-text:hover span {
    width: 25px;
    opacity: 1;
    transform: translateX(4px);
}

.btn-text:hover span img {
    transform: translate(3px, -3px);
}

.btn-arrow {
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.header.scrolled .navbar.navbar-white .logo {
    color: var(--primary-color);
}

.header.scrolled .navbar.navbar-white .nav-links a {
    color: var(--text-color);
}

.header.scrolled .navbar.navbar-white .nav-links a:hover,
.header.scrolled .navbar.navbar-white .nav-links a.active {
    color: var(--primary-color);
}

.header.scrolled .navbar.navbar-white .nav-links a.active::after {
    background-color: var(--primary-color);
}

.header.scrolled .navbar.navbar-white .btn-outline {
    border-color: #000;
    color: #000;
}

.header.scrolled .navbar.navbar-white .btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.header.scrolled .navbar.navbar-white .mobile-menu-btn span {
    background-color: var(--primary-color);
}

.header.scrolled .navbar.navbar-white .mobile-menu-btn.active span {
    background-color: #000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    line-height: 20px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.logo span {
    text-transform: capitalize;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-links a svg {
    width: 10px;
    height: 6px;
    transition: var(--transition);
}

.nav-links li.has-dropdown:hover a svg {
    transform: rotate(180deg);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .btn-outline {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Navbar white variant for project pages */
.navbar.navbar-white .logo {
    color: #fff;
}

.navbar.navbar-white .nav-links a {
    color: #fff;
}

.navbar.navbar-white .nav-links a:hover,
.navbar.navbar-white .nav-links a.active {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.navbar-white .nav-links a.active::after {
    background-color: #fff;
}

.navbar.navbar-white .btn-outline {
    border-color: #fff;
    color: #fff;
}

.navbar.navbar-white .btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.navbar.navbar-white .mobile-menu-btn span {
    background-color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #000;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: #000;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-white);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links li:first-child {
    border-top: 1px solid var(--border-color);
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 0;
    display: block;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu .btn {
    align-self: flex-start;
}

/* ----- Navbar: 1024px ----- */
@media (max-width: 1024px) {
    .header {
        padding: 16px 0;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .navbar .btn-outline {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ----- Navbar: 768px — switch to mobile menu ----- */
@media (max-width: 768px) {
    .header {
        padding: 14px 0;
    }

    .nav-links,
    .navbar .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        padding-top: 80px;
    }
}

/* ----- Navbar: 480px ----- */
@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 16px;
        line-height: 18px;
    }

    .logo img {
        width: 34px;
        height: 34px;
    }

    .mobile-menu {
        padding: 72px 20px 32px;
    }

    .mobile-nav-links a {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 0px;
    background-color: var(--bg-light);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    /* background-image: url("../images/Grid.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    position: relative;
    overflow: hidden;
    text-align: center;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Floating 3D shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.hero-shape img {
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
}

.hero-shape-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
}

.hero-shape-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 200px;
}

.hero-shape-small {
    width: 80px;
}

.hero-shape-small.top-left {
    left: 15%;
    top: 25%;
}

.hero-shape-small.bottom-right {
    right: 15%;
    bottom: 25%;
}

.hero-text h1,
.hero-headline {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Leak Badge */
.leak-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 8px 20px 8px 14px;
    border-radius: 12px;
    font-size: 48px;
    position: relative;
    transform: translateX(-100px);
    opacity: 0;
}

.cursor-icon {
    width: 48.996px;
    height: 48.999px;
    flex-shrink: 0;
    object-fit: contain;
    position: absolute;
    left: -39.004px;

    bottom: 10.295px;
}

/* Badge Speech Bubble Tail */
.badge-tail {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-color: #000;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    transform: rotate(30deg);
}

.leak-text {
    font-family: var(--font-heading);
    font-weight: 400;
}

.headline-rest,
.headline-line2 {
    opacity: 0;
    transform: translateY(20px);
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    /* max-width: 520px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 0.5rem;
}

.hero-buttons .btn {
    font-family: var(--font-heading);
}

.text-outline {
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--accent-color);
    z-index: -1;
}

.text-highlight-yellow {
    background-color: var(--accent-color);
    padding: 2px 8px;
    border-radius: 4px;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-top: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-box {
    padding: 2px 10px;
    display: inline-flex;
    transform: rotate(5deg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Bruno Ace";
    font-size: 51px;
    font-style: normal;
    font-weight: 400;
    line-height: 58.65px;
    border-radius: 16px;
    background: #000;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-heading);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Staggered layout - offset middle column */
/* .service-item:nth-child(2),
.service-item:nth-child(5) {
    transform: translateY(40px);
} */

.service-item {
    text-align: center;
    padding: 20px;
    cursor: pointer;
    will-change: transform;
    border-radius: 30px;
    border: 2px solid transparent;
    transition:
        transform 0.15s ease-out,
        border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: #000;
}

/* .service-item:nth-child(2):hover,
.service-item:nth-child(5):hover {
    transform: translateY(34px);
} */

.service-item:hover h3 {
    color: #333;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-out;
}

.service-item:hover .service-icon {
    transform: scale(1.12);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.15s ease-out;
}

.service-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-browse {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.btn-browse:hover {
    color: #666;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.portfolio-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-heading);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 16px;
    min-height: 600px;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-color: #e5e5e5;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    text-decoration: none;
}

.portfolio-card:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.view-project {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    background: #000;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.view-project svg {
    transition: transform 0.3s ease;
}

.portfolio-card:hover .view-project {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card:hover .view-project:hover svg {
    transform: translate(3px, -3px);
}

/* Card 1: Large left - spans 2 columns, 2 rows */
.portfolio-card.card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Card 2: Top right - spans 2 columns */
.portfolio-card.card-2 {
    grid-column: 3 / 5;
    grid-row: 1;
}

/* Card 3: Middle right left */
.portfolio-card.card-3 {
    grid-column: 3;
    grid-row: 2;
}

/* Card 4: Middle right right */
.portfolio-card.card-4 {
    grid-column: 4;
    grid-row: 2;
}

/* Card 5: Bottom left */
.portfolio-card.card-5 {
    grid-column: 1;
    grid-row: 3;
}

/* Card 6: Bottom middle-left */
.portfolio-card.card-6 {
    grid-column: 2;
    grid-row: 3;
}

/* Card 7: Bottom right - spans 2 columns */
.portfolio-card.card-7 {
    grid-column: 3 / 5;
    grid-row: 3;
}

/* Portfolio CTA */
.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.btn-link {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #666;
}

.btn-link span {
    font-size: 16px;
}

/* ===================================
   Collaborate Section
   =================================== */
.collaborate-section {
    padding: 100px 0 0;
    background-color: #f7f7f7;
    overflow: hidden;
}

.collaborate-header {
    text-align: center;
    margin-bottom: 50px;
}

.collaborate-label {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

/* Grid wrapper with mask for fade edges */
.collaborate-grid-wrapper {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.collaborate-grid-wrapper::before,
.collaborate-grid-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.collaborate-grid-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, #f7f7f7 0%, transparent 100%);
}

.collaborate-grid-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}

.collaborate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.collaborate-column {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.collaborate-column-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

/* Column scrolling down (top to bottom) */
.col-down .collaborate-column-track {
    animation: colScrollDown 35s linear infinite;
}

/* Column scrolling up (bottom to top) */
.col-up .collaborate-column-track {
    animation: colScrollUp 35s linear infinite;
}

@keyframes colScrollDown {
    0% {
        transform: translateY(calc(-50% - 8px));
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes colScrollUp {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(calc(-50% - 8px));
    }
}

.collaborate-img {
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.collaborate-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.collaborate-img:hover img {
    transform: scale(1.05);
}

/* Collaborate Overlay (same pattern as portfolio) */
.collaborate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    text-decoration: none;
    border-radius: 14px;
    z-index: 1;
}

.collaborate-img:hover .collaborate-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.collaborate-view {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: #000;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.collaborate-view svg {
    transition: transform 0.3s ease;
}

.collaborate-img:hover .collaborate-view {
    opacity: 1;
    transform: translateY(0);
}

.collaborate-img:hover .collaborate-view:hover svg {
    transform: translate(3px, -3px);
}

/* Pause only the hovered column */
.collaborate-column:hover .collaborate-column-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1024px) {
    .collaborate-heading {
        font-size: 38px;
    }

    .collaborate-grid-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .collaborate-section {
        padding: 60px 0 0;
    }

    .collaborate-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .collaborate-heading {
        font-size: 30px;
    }

    .collaborate-grid-wrapper {
        height: 450px;
    }

    .collaborate-grid {
        gap: 10px;
    }

    .collaborate-column-track {
        gap: 10px;
    }

    .collaborate-img {
        border-radius: 10px;
    }

    .collaborate-img img {
        border-radius: 10px;
    }

    .collaborate-overlay {
        border-radius: 10px;
    }

    .collaborate-view {
        font-size: 12px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .collaborate-heading {
        font-size: 24px;
    }

    .collaborate-grid-wrapper {
        height: 380px;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.process-wrapper.process_clumen {
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.process_clumen .process-left h2 {
    text-align: center;
}
.process_clumen .process-left {
    text-align: center;
}
.process_clumen .process-left .btn {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.process-left {
    flex: 0 0 43%;
    position: sticky;
    top: 40px;
}

.process-left h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.process-left .highlight-box {
    transform: rotate(-5deg);
}

.process-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 327px;
    font-family: var(--font-heading);
}

.process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 47px;
    padding-top: 20px;
}

.process-card {
    background-color: var(--bg-white);
    padding: 48px 38px;
    border-radius: 20px;
    border: 2px solid #000;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    max-width: 510px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Card 1: Tilted left, number on left */
.process-card.card-1 {
    margin-left: 0;
    transform: rotate(4deg);
}

.process-card.card-1:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-card.card-1 .process-number {
    left: -18px;
    right: auto;
}

/* Card 2: Tilted right, number on right */
.process-card.card-2 {
    margin-left: -80px;
    transform: rotate(0deg);
}

.process-card.card-2:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-card.card-2 .process-number {
    left: auto;
    right: -18px;
}

/* Card 3: Tilted left, number on left */
.process-card.card-3 {
    margin-left: 40px;
    transform: rotate(-4deg);
}

.process-card.card-3:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-card.card-3 .process-number {
    left: -18px;
    right: auto;
}

.process-number {
    position: absolute;
    top: -22px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    width: 40.997px;
    height: 40.997px;
    padding: 11.501px 12.278px 11.495px 12.282px;
    justify-content: center;
    align-items: center;
    border-radius: 999999px;
    background: #080808;
    z-index: 1;
}

.process-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon img {
    transform: scale(1.1) rotate(5deg);
}

.process-content {
    flex: 1;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-family: var(--font-heading);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

/* Team Header Row */
.team-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.team-headline {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
}

.team-headline .highlight-box.team-badge {
    font-size: 48px;
    transform: rotate(-5deg);
    display: inline-flex;
    margin-left: 5px;
}

.team-header-row .btn-dark {
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 14px;
    margin-top: 20px;
}

/* Team Content Row */
.team-content-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Team Left */
.team-left {
    padding-top: 20px;
}

.team-stats-row {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.team-stat {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.team-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.team-stat .stat-plus {
    font-size: 36px;
    font-weight: 600;
    margin-left: 2px;
}

.team-stat .stat-plus.blue {
    color: #4f46e5;
}

.team-stat .stat-plus.orange {
    color: #ff6b35;
}

.team-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-family: var(--font-heading);
}

.team-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 380px;
    font-family: var(--font-heading);
    margin: auto;
}
.team-description.home {
    margin-left: 0;
}

/* Team Right - Illustration */
.team-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-illustration {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.team-illustration img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Testimonials Section - New Design */
.testimonials-section {
    padding: 100px 0 80px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonials-header .highlight-box {
    font-size: 44px;
    transform: rotate(-3deg);
}

.testimonials-subtitle {
    font-size: 14px;
    font-family: var(--font-heading);
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Full-width Marquee Wrapper */
.testimonials-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0 40px;
}

.testimonials-marquee-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
    will-change: transform;
    padding: 20px 0;
}

/* Testimonial Card - New Design with notched corners */
.testimonial-card-new {
    position: relative;
    background-color: var(--bg-white);
    padding: 40px 35px 35px;
    border-radius: 20px;
    border: 2px solid #e8e8e8;
    width: 420px;
    min-height: 300px;
    flex-shrink: 0;
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* Card Position - Alternating top/bottom */
.testimonials-marquee-track .testimonial-card-new:nth-child(odd) {
    transform: translateY(30px);
}

.testimonials-marquee-track .testimonial-card-new:nth-child(even) {
    transform: translateY(-30px);
}

/* Card Hover Effects - Disabled */

/* Quote Icon */
.quote-icon {
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #ff6b35;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
    height: 40px;
}

/* Testimonial Content */
.testimonial-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Testimonial Author - New Design */
.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    justify-content: center;
    text-align: left;
}

.testimonial-author-new img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #999;
}

/* Featured Card Highlight */
/* .testimonial-card-new.featured {
    border-color: #ff6b35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
} */

/* Header animation */
.testimonials-header h2,
.testimonials-subtitle,
.testimonials-header .btn {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.testimonials-header.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header.animate .testimonials-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.testimonials-header.animate .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Subtle floating animation for cards - Disabled */

@keyframes testimonialPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* CTA Banner Section */
.cta-banner {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light);
    padding: 40px 50px;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border-color);
}

.cta-text h2 {
    font-size: 32px;
    margin-top: 5px;
}

.cta-label {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Banner Section - New Design */
.cta-banner-new {
    padding: 80px 0 144px;
    background-color: #f7f7f7;
}

.cta-banner-card {
    position: relative;
    /* background-color: #fff; */
    border: none;
    border-radius: 0px;
    padding: 60px 40px 40px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    margin-bottom: 4rem;
    overflow: visible;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.cta-border-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #6366f1;
    border-radius: 0px;
    pointer-events: none;
    opacity: 0;
    transform: rotate(-2deg) scale(0.95);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    overflow: visible;
}

.cta-banner-card.animate .cta-border-wrapper {
    opacity: 1;
    animation: borderFloat 4s ease-in-out infinite;
}

@keyframes borderFloat {
    0%,
    100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

.cta-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

/* CTA Banner Animations - Initial States */
.cta-banner-card {
    opacity: 0;
    transform: translateY(60px);
}

.cta-banner-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-banner-card.animate:hover {
    transform: translateY(-5px);
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #6366f1;
    border-radius: 3px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-banner-card.animate .corner-accent {
    opacity: 1;
    transform: scale(1);
}

.cta-banner-card.animate .corner-accent.top-left {
    transition-delay: 0.3s;
}

.cta-banner-card.animate .corner-accent.top-right {
    transition-delay: 0.4s;
}

.cta-banner-card.animate .corner-accent.bottom-left {
    transition-delay: 0.5s;
}

.cta-banner-card.animate .corner-accent.bottom-right {
    transition-delay: 0.6s;
}

/* Corner accent pulse animation */
@keyframes cornerPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

.corner-accent.top-left {
    top: -7px;
    left: -7px;
}

.corner-accent.top-right {
    top: -7px;
    right: -7px;
}

.corner-accent.bottom-left {
    bottom: -7px;
    left: -7px;
}

.corner-accent.bottom-right {
    bottom: -7px;
    right: -7px;
}

/* Decorative Symbols */
.deco-symbol {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 20px;
    color: #000;
    font-weight: 400;
    opacity: 0;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.cta-banner-card.animate .deco-symbol {
    opacity: 1;
}

.deco-slash {
    top: 30px;
    left: 40px;
    font-size: 22px;
    transform: translateX(-20px) rotate(-15deg);
}

.cta-banner-card.animate .deco-slash {
    transform: translateX(0) rotate(0);
    transition-delay: 0.5s;
    animation: floatRotate 4s ease-in-out infinite;
    animation-delay: 1s;
}

.deco-x {
    top: 30px;
    right: 40px;
    font-size: 24px;
    font-weight: 300;
    transform: translateX(20px) rotate(15deg);
}

.cta-banner-card.animate .deco-x {
    transform: translateX(0) rotate(0);
    transition-delay: 0.6s;
    animation: floatRotateReverse 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes floatRotate {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(8deg);
    }
}

@keyframes floatRotateReverse {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-8deg);
    }
}

/* CTA Banner Text */
.cta-banner-text {
    margin-bottom: 30px;
}

.cta-banner-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
    /* display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap; */
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.cta-banner-card.animate .cta-banner-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.idea-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #000;
    color: #fff;
    padding: 6px 18px;
    border-radius: 10px;
    font-size: 38px;
    position: relative;
    transform: scale(0.8) rotate(-5deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-banner-card.animate .idea-badge {
    transform: scale(1) rotate(0);
    opacity: 1;
    transition-delay: 0.4s;
}

/* Idea badge hover effect */
.idea-badge:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Idea badge continuous animation */
.cta-banner-card.animate .idea-badge {
    animation: badgeBounce 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes badgeBounce {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.02) rotate(-1deg);
    }
    50% {
        transform: scale(1) rotate(1deg);
    }
    75% {
        transform: scale(1.02) rotate(-1deg);
    }
}

.idea-badge::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #000;
    transform: rotate(-20deg);
}

.cta-banner-subheading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.cta-banner-card.animate .cta-banner-subheading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.cta-banner-description {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.cta-banner-card.animate .cta-banner-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* CTA Banner Buttons */
.cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.cta-banner-card.animate .cta-banner-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.btn-purple {
    background-color: #6366f1;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-purple::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
}

.btn-purple:hover::before {
    width: 300px;
    height: 300px;
}

.btn-purple:hover {
    background-color: #4f46e5;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-purple:active {
    transform: translateY(0) scale(0.98);
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: #000;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    padding: 14px 0;
    transition: all 0.3s ease;
}

.btn-email:hover {
    transform: translateX(5px);
}

.email-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1.5px solid #000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.email-arrow-icon svg {
    width: 10px;
    height: 10px;
}

.btn-email:hover {
    color: #000000;
}

.btn-email:hover .email-arrow-icon {
    border-color: #000000;
}

/* Hand Illustration */
.cta-hand-illustration {
    position: absolute;
    bottom: -210px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    will-change: transform;
}

.cta-banner-card.animate .cta-hand-illustration {
    opacity: 1;
    animation: handEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes handEnter {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Hand wave animation on hover */
.cta-hand-illustration:hover svg {
    animation: handWave 0.6s ease-in-out;
}

@keyframes handWave {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    20% {
        transform: rotate(-12deg) scale(1.05);
    }
    40% {
        transform: rotate(10deg) scale(1.05);
    }
    60% {
        transform: rotate(-8deg) scale(1.05);
    }
    80% {
        transform: rotate(5deg) scale(1.02);
    }
}

.cta-hand-illustration svg {
    width: 140px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cta-hand-illustration:hover svg {
    transform: scale(1.08);
}

/* CTA Banner Responsive */
@media (max-width: 768px) {
    .cta-banner-new {
        padding: 60px 0 144px;
    }

    .cta-banner-card {
        padding: 50px 25px 100px;
        margin: 0 15px;
    }

    .cta-banner-heading {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }

    .idea-badge {
        font-size: 26px;
        padding: 5px 14px;
    }

    .cta-banner-subheading {
        font-size: 28px;
    }

    .cta-banner-description {
        font-size: 12px;
    }

    .deco-slash,
    .deco-x {
        font-size: 16px;
        top: 20px;
    }

    .deco-slash {
        left: 25px;
    }

    .deco-x {
        right: 25px;
    }

    .corner-accent {
        width: 10px;
        height: 10px;
    }

    .corner-accent.top-left {
        top: -5px;
        left: -5px;
    }

    .corner-accent.top-right {
        top: -5px;
        right: -5px;
    }

    .corner-accent.bottom-left {
        bottom: -5px;
        left: -5px;
    }

    .corner-accent.bottom-right {
        bottom: -5px;
        right: -5px;
    }

    .cta-banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-hand-illustration svg {
        width: 110px;
    }

    .cta-hand-illustration {
        bottom: -55px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.faq-header .highlight-box.faq-highlight {
    font-size: 44px;
    transform: rotate(-3deg);
    opacity: 0;
}

.faq-header.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.faq-header.animate .faq-highlight {
    opacity: 1;
}

.faq-subtitle {
    font-size: 14px;
    font-family: var(--font-heading);
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.faq-header.animate .faq-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
}

.faq-number {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #080808;
    color: #fff;
    font-family: "Bruno Ace", sans-serif;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card {
    flex: 1;
    background-color: #fff;
    border: 1.5px solid #080808;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 22px;
}

.faq-item.active .faq-card {
    border-radius: 20px;
    border-color: #e0e0e0;
    border-bottom: 14px solid #080808;
    background-color: #fafafa;
}

.faq-item.active .faq-number {
    top: 30px;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 20px 38px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Bruno Ace", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    transition: all 0.3s ease;
    color: #080808;
    gap: 15px;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    color: #888;
}

.faq-icon svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.active .faq-icon {
    background-color: #080808;
    border-color: #080808;
    color: #fff;
    transform: scale(1);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 38px 28px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.cta-content .cta-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.cta-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.cta-subscribe {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.cta-subscribe p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.subscribe-form input:focus {
    border-color: var(--primary-color);
}

.subscribe-form .btn {
    width: 100%;
}

/* Articles Section */
.articles {
    padding: 100px 0;
    background-color: #fff;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.articles-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
}

.articles-header .highlight-box.articles-highlight {
    font-size: 44px;
    transform: rotate(-3deg);
}

.browse-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.browse-all-link:hover {
    color: #000;
}

.browse-arrow {
    width: 32px;
    height: 32px;
    border: 1.5px solid #d0d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.browse-all-link:hover .browse-arrow {
    background-color: #080808;
    border-color: #080808;
    color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.articles-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Article Card Base */
.article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 2px solid #080808;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    border-radius: 24px;
    background: #f7f7f7;
}

a.article-card:hover {
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Featured Article Card */
.article-featured {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-image-wrapper {
    position: relative;
    /* background: linear-gradient(135deg, #ff7a5c 0%, #ff9472 100%); */
    padding: 30px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-image-wrapper img {
    max-width: 100%;
    max-height: 280px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.article-featured:hover .article-image-wrapper img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 50px;
    left: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Bruno Ace";
    padding: 8px 14px;
    background-color: #080808;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    z-index: 2;
}

.article-tag svg {
    flex-shrink: 0;
}

.article-featured .article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-featured .article-content h3 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #080808;
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #080808;
}

.article-date {
    font-size: 12px;
    color: #888;
}

/* Small Article Cards */
.article-small {
    padding: 0;
}

.article-small .article-content {
    padding: 38px;
}

.article-small .article-content h3 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #080808;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-meta .article-tag {
    position: static;
    padding: 6px 12px;
    color: #fff;
    font-family: "Bruno Ace";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 125% */
}

.article-tag.tag-purple {
    background-color: #080808;
}

.article-tag.tag-dark {
    background-color: #080808;
}

.article-meta .article-date {
    font-size: 13px;
    color: #888;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 100px 0 40px;
    border-top: 1px solid #e8e8e8;
    font-family: "Bruno Ace", sans-serif;
}

/* Footer CTA */
.footer-cta-new {
    text-align: center;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 60px;
}

.footer-cta-text {
    /* display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; */
    margin-bottom: 10px;
    font-family: "Bruno Ace", sans-serif;
    font-size: 42px;
    color: #080808;
    opacity: 0;
    transform: translateY(20px);
}

.footer-cta-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-cta-link:hover {
    opacity: 0.7;
}

.footer-cta-text .highlight-box.footer-highlight {
    font-size: 38px;
    transform: rotate(-3deg);
}

.footer-cta-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 42px;
    color: #080808;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.footer-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: transparent;
    border: 2px solid #080808;
    border-radius: 50px;
    color: #080808;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #080808;
    color: #fff;
}

.btn-arrow-circle {
    width: 28px;
    height: 28px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Footer Content */
.footer-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links-section {
    display: flex;
    gap: 80px;
    opacity: 0;
    transform: translateX(-30px);
}

.footer-col h4 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #080808;
    transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter {
    background-color: #fff;
    border: 2px solid #080808;
    border-radius: 20px;
    padding: 35px 30px 30px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    margin-top: 20px;
}

.newsletter-icon {
    position: absolute;
    top: -36px;
    right: -16px;
    width: 74px;
    height: 74px;
    background-color: #0d0d0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080808;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.footer-newsletter h3 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-newsletter p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: block;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    font-size: 13px;
    font-family: "Bruno Ace", sans-serif;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #fff;
    font-family: "Bruno Ace", sans-serif;
}

.btn-subscribe {
    padding: 12px 20px;
    white-space: nowrap;
    border-radius: 50px;
    font-size: 12px;
    font-family: "Bruno Ace", sans-serif;
    background-color: #fff;
    color: #080808;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #f0f0f0;
}

/* Footer Bottom */
.footer-bottom-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateY(20px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: "Bruno Ace", sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #080808;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
}

/* Footer Responsive - Large Screens */
@media (max-width: 1200px) {
    .footer {
        padding: 80px 0 35px;
    }

    .footer-cta-new {
        padding-bottom: 60px;
        margin-bottom: 50px;
    }

    .footer-cta-text {
        font-size: 38px;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 34px;
    }

    .footer-cta-title {
        font-size: 38px;
    }

    .footer-content-new {
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-links-section {
        gap: 60px;
    }
}

/* Footer Responsive - Tablets */
@media (max-width: 992px) {
    .footer {
        padding: 70px 0 30px;
    }

    .footer-cta-new {
        padding-bottom: 50px;
        margin-bottom: 40px;
    }

    .footer-cta-text {
        font-size: 32px;
        flex-wrap: wrap;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 28px;
    }

    .footer-cta-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .footer-cta-buttons {
        gap: 12px;
    }

    .btn-outline-dark {
        padding: 12px 20px;
        font-size: 13px;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-links-section {
        gap: 50px;
        justify-content: flex-start;
    }

    .footer-newsletter {
        max-width: 500px;
    }

    .footer-bottom-new {
        padding-top: 30px;
    }
}

/* Footer Responsive - Small Tablets */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-cta-new {
        padding-bottom: 40px;
        margin-bottom: 35px;
    }

    .footer-cta-text {
        font-size: 28px;
        gap: 8px;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 24px;
    }

    .footer-cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline-dark {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }

    .footer-content-new {
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-links-section {
        gap: 40px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-newsletter {
        padding: 30px 25px 25px;
        border-radius: 16px;
        max-width: 100%;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        top: -30px;
        right: -10px;
    }

    .footer-newsletter h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-newsletter p {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .newsletter-input-wrapper {
        padding: 4px 4px 4px 16px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 10px 0;
    }

    .btn-subscribe {
        padding: 10px 16px;
        font-size: 11px;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Footer Responsive - Large Phones */
@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-cta-new {
        padding-bottom: 35px;
        margin-bottom: 30px;
    }

    .footer-cta-text {
        font-size: 24px;
        gap: 6px;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 20px;
    }

    .footer-cta-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .btn-outline-dark {
        padding: 10px 18px;
        font-size: 12px;
        max-width: 250px;
    }

    .btn-arrow-circle {
        width: 24px;
        height: 24px;
    }

    .footer-content-new {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-links-section {
        flex-wrap: wrap;
        gap: 30px 40px;
    }

    .footer-col {
        min-width: 120px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 12px;
    }

    .footer-col ul {
        gap: 8px;
    }

    .footer-newsletter {
        padding: 25px 20px 20px;
        border-radius: 14px;
        margin-top: 10px;
    }

    .newsletter-icon {
        width: 50px;
        height: 50px;
        top: -25px;
        right: -8px;
    }

    .footer-newsletter h3 {
        font-size: 18px;
    }

    .footer-newsletter p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .newsletter-input-wrapper {
        padding: 3px 3px 3px 14px;
        gap: 8px;
    }

    .newsletter-form input {
        font-size: 11px;
        padding: 8px 0;
    }

    .btn-subscribe {
        padding: 8px 14px;
        font-size: 10px;
    }

    .footer-bottom-new {
        gap: 12px;
        padding-top: 20px;
    }

    .footer-logo img {
        width: 26px;
    }

    .footer-logo span {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Footer Responsive - Small Phones */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 18px;
    }

    .footer-cta-new {
        padding-bottom: 30px;
        margin-bottom: 25px;
    }

    .footer-cta-text {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 18px;
    }

    .footer-cta-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .btn-outline-dark {
        padding: 10px 16px;
        font-size: 11px;
        max-width: 220px;
    }

    .btn-arrow-circle {
        width: 22px;
        height: 22px;
    }

    .footer-content-new {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-links-section {
        gap: 25px 30px;
    }

    .footer-col {
        min-width: 100px;
    }

    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 11px;
    }

    .footer-col ul {
        gap: 6px;
    }

    .footer-newsletter {
        padding: 22px 18px 18px;
        border-radius: 12px;
    }

    .newsletter-icon {
        width: 44px;
        height: 44px;
        top: -22px;
        right: -6px;
    }

    .footer-newsletter h3 {
        font-size: 16px;
    }

    .footer-newsletter p {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
        border-radius: 14px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .btn-subscribe {
        width: 100%;
        padding: 10px 14px;
        font-size: 11px;
    }

    .footer-bottom-new {
        gap: 10px;
        padding-top: 18px;
    }

    .footer-logo img {
        width: 24px;
    }

    .footer-logo span {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}

/* Footer Responsive - Extra Small Phones */
@media (max-width: 360px) {
    .footer {
        padding: 35px 0 15px;
    }

    .footer-cta-new {
        padding-bottom: 25px;
        margin-bottom: 20px;
    }

    .footer-cta-text {
        font-size: 18px;
    }

    .footer-cta-text .highlight-box.footer-highlight {
        font-size: 16px;
    }

    .footer-cta-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .btn-outline-dark {
        padding: 8px 14px;
        font-size: 10px;
        max-width: 200px;
    }

    .footer-content-new {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-links-section {
        gap: 20px 25px;
    }

    .footer-col {
        min-width: 90px;
    }

    .footer-col h4 {
        font-size: 10px;
    }

    .footer-col a {
        font-size: 10px;
    }

    .footer-newsletter {
        padding: 18px 15px 15px;
    }

    .newsletter-icon {
        width: 38px;
        height: 38px;
        top: -19px;
        right: -5px;
    }

    .footer-newsletter h3 {
        font-size: 14px;
    }

    .footer-newsletter p {
        font-size: 9px;
    }

    .newsletter-form input {
        font-size: 10px;
    }

    .btn-subscribe {
        font-size: 10px;
    }

    .footer-logo img {
        width: 22px;
    }

    .footer-logo span {
        font-size: 9px;
    }

    .footer-copyright {
        font-size: 9px;
    }
}

/* Scroll Images Section - Camera Reel */
.scroll_images {
    padding: 60px 0;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}
.scroll_images::after {
    content: "";
    position: absolute;
    bottom: 22px;
    width: 104%;
    left: -30px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 50%;
    transform: rotate(180deg);
    transform-origin: center;
    z-index: 2;
}
.scroll_images::before {
    content: "";
    position: absolute;
    top: 22px;
    width: 104%;
    left: -30px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 50%;
    transform: rotate(180deg);
    transform-origin: center;
    z-index: 2;
}

.scroll_images_track {
    display: flex;
    align-items: center;
    gap: 0px;
    width: fit-content;
    will-change: transform;
}

.scroll_image_item {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    /* border-radius: var(--radius-lg); */
    overflow: hidden;
    position: relative;
}

.scroll_image_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Images Responsive - Large Screens */
@media (max-width: 1200px) {
    .scroll_images {
        padding: 55px 0;
    }

    .scroll_image_item {
        width: 300px;
        height: 300px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 70px;
    }
}

/* Scroll Images Responsive - Tablets */
@media (max-width: 992px) {
    .scroll_images {
        padding: 50px 0;
    }

    .scroll_image_item {
        width: 280px;
        height: 280px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 60px;
        top: 18px;
        bottom: 18px;
        width: 113%;
    }
}

/* Scroll Images Responsive - Small Tablets */
@media (max-width: 768px) {
    .scroll_images {
        padding: 40px 0;
    }

    .scroll_image_item {
        width: 240px;
        height: 240px;
    }

    .scroll_images_track {
        gap: 10px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 50px;
        top: 15px;
        bottom: 15px;
        width: 113%;
    }
}

/* Scroll Images Responsive - Large Phones */
@media (max-width: 576px) {
    .scroll_images {
        padding: 35px 0;
    }

    .scroll_image_item {
        width: 200px;
        height: 200px;
    }

    .scroll_images_track {
        gap: 8px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 40px;
        top: 12px;
        bottom: 12px;
        width: 113%;
    }
}

/* Scroll Images Responsive - Small Phones */
@media (max-width: 480px) {
    .scroll_images {
        padding: 30px 0;
    }

    .scroll_image_item {
        width: 170px;
        height: 170px;
    }

    .scroll_images_track {
        gap: 6px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 35px;
        top: 10px;
        bottom: 10px;
        width: 113%;
    }
}

/* Scroll Images Responsive - Extra Small Phones */
@media (max-width: 360px) {
    .scroll_images {
        padding: 25px 0;
    }

    .scroll_image_item {
        width: 140px;
        height: 140px;
    }

    .scroll_images_track {
        gap: 5px;
    }

    .scroll_images::before,
    .scroll_images::after {
        height: 30px;
        top: 8px;
        bottom: 8px;
        width: 113%;
    }
}

.brands_section_box {
    background-color: #080808;
    overflow: hidden;
    position: relative;
}

.brands_section_track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 39px 0;
    width: fit-content;
    will-change: transform;
}

.brands_section_box .brand_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    flex-shrink: 0;
}
.brands_section_box .brand_logo img:last-child {
    height: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-text h1,
    .hero-headline {
        font-size: 44px;
    }

    .leak-badge {
        font-size: 38px;
        padding: 6px 16px 6px 12px;
    }

    .hero-shape-left {
        width: 140px;
        left: 2%;
    }

    .hero-shape-right {
        width: 160px;
        right: 2%;
    }

    .hero-shape-small {
        width: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    /* .service-item:nth-child(2),
    .service-item:nth-child(5) {
        transform: translateY(0);
    } */

    .portfolio-header h2 {
        font-size: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .portfolio-card.card-1 {
        grid-column: span 2;
        grid-row: auto;
        min-height: 250px;
    }

    .portfolio-card.card-2 {
        grid-column: span 2;
        grid-row: auto;
        min-height: 180px;
    }

    .portfolio-card.card-3,
    .portfolio-card.card-4,
    .portfolio-card.card-5,
    .portfolio-card.card-6 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 160px;
    }

    .portfolio-card.card-7 {
        grid-column: span 2;
        grid-row: auto;
        min-height: 180px;
    }

    .process-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .process-left {
        flex: none;
        width: 100%;
        position: static;
        text-align: center;
    }

    .process-left h2 {
        font-size: 38px;
    }

    .process-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .process-right {
        width: 100%;
        align-items: center;
    }

    .process-card {
        max-width: 100%;
    }

    .process-card.card-1 {
        margin-left: 0;
        transform: rotate(-2deg);
    }

    .process-card.card-2 {
        margin-left: 40px;
        transform: rotate(2deg);
    }

    .process-card.card-3 {
        margin-left: 20px;
        transform: rotate(-1deg);
    }

    .team-header-row {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }

    .team-headline {
        font-size: 40px;
    }

    .team-headline .highlight-box.team-badge {
        font-size: 36px;
    }

    .team-content-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .team-left {
        text-align: center;
    }

    .team-stats-row {
        justify-content: center;
    }

    .team-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .team-left .btn-text {
        justify-content: center;
    }

    .cta-box {
        grid-template-columns: 1fr 1fr;
    }

    .cta-subscribe {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-shape {
        display: none;
    }

    .hero-text h1,
    .hero-headline {
        font-size: 32px;
    }

    .leak-badge {
        font-size: 28px;
        padding: 5px 14px 5px 10px;
        border-radius: 8px;
    }

    .cursor-icon {
        width: 18px;
        height: 18px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .service-item {
        padding: 10px;
    }

    .services-cta {
        margin-top: 40px;
    }

    .portfolio-header h2 {
        font-size: 28px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .portfolio-card.card-1,
    .portfolio-card.card-2,
    .portfolio-card.card-3,
    .portfolio-card.card-4,
    .portfolio-card.card-5,
    .portfolio-card.card-6,
    .portfolio-card.card-7 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }

    .portfolio-cta {
        flex-direction: column;
        gap: 20px;
    }

    .process-left h2 {
        font-size: 28px;
    }

    .process-card {
        padding: 20px 18px;
    }

    .process-card.card-1,
    .process-card.card-2,
    .process-card.card-3 {
        margin-left: 0;
        transform: rotate(0deg);
    }

    .process-card.card-1 .process-number,
    .process-card.card-2 .process-number,
    .process-card.card-3 .process-number {
        left: 24px;
        right: auto;
    }

    .process-icon {
        width: 45px;
        height: 45px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 13px;
    }

    .team-headline {
        font-size: 28px;
    }

    .team-headline .highlight-box.team-badge {
        font-size: 24px;
    }

    .team-stats-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .team-stat .stat-number {
        font-size: 48px;
        justify-content: center;
    }

    .team-stat .stat-plus {
        font-size: 28px;
    }

    .team-stat .stat-label {
        text-align: center;
    }

    /* Testimonials Section Responsive */
    .testimonials-header h2 {
        font-size: 32px;
    }

    .testimonials-header .highlight-box {
        font-size: 28px;
    }

    .testimonial-card-new {
        width: 350px;
        min-height: 280px;
    }

    .testimonials-marquee-track {
        gap: 20px;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .cta-subscribe {
        grid-column: span 1;
    }

    .articles-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .articles-header h2 {
        font-size: 32px;
    }

    .articles-header .highlight-box.articles-highlight {
        font-size: 28px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-image-wrapper {
        min-height: 220px;
    }

    .article-featured .article-content h3 {
        font-size: 18px;
    }

    .article-small .article-content h3 {
        font-size: 16px;
    }

    .footer-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .team-headline {
        font-size: 24px;
    }

    .team-headline .highlight-box.team-badge {
        font-size: 20px;
    }

    .team-stat .stat-number {
        font-size: 40px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header .highlight-box.faq-highlight {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 13px;
        padding: 0 20px;
    }

    .faq-list {
        max-width: 100%;
        padding: 0 15px;
    }

    .faq-number {
        width: 34px;
        height: 34px;
        font-size: 12px;
        left: -10px;
    }

    .faq-card {
        margin-left: 24px;
    }

    .faq-question {
        font-size: 13px;
        padding: 15px 15px 15px 20px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon svg {
        width: 12px;
        height: 12px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 13px;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
    padding: 160px 0 100px;
    background-color: #f7f7f7;
    background-image: url("../images/Grid.png");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    text-align: center;
}

.about-hero .container {
    position: relative;
    max-width: 1200px;
}

.about-avatar {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 4px solid #f7f7f7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-avatar-1 {
    top: 20px;
    left: 8%;
    background-color: #ff7a59;
}

.about-avatar-2 {
    top: -20px;
    right: 22%;
    background-color: #e8e8e8;
}

.about-avatar-3 {
    top: 100px;
    right: 6%;
    background-color: #f5a623;
}

.about-avatar-4 {
    top: 180px;
    left: 12%;
    background-color: #4a6cf7;
}

.about-hero-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.about-hero-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 56px;
    font-weight: 400;

    color: #080808;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-hero-title .highlight-box.about-highlight {
    font-size: 50px;
    margin: 0 12px;
}

.about-hero-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.9;
    margin-bottom: 50px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 45px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: "Bruno Ace", sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #080808;
    display: block;
    line-height: 1;
}

.about-stat-number .stat-plus,
.about-stat-number .stat-percent {
    font-size: 28px;
    color: #080808;
    vertical-align: top;
}

.stat-plus.orange {
    color: #fe5e3a;
}
.stat-plus.banana {
    color: #ffc121;
}

.about-stat-label {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 10px;
}

/* Skills Section */
.skills-section {
    padding: 80px 0 100px;
    background-color: #f7f7f7;
}

.skills-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 60px;
}

.skills-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.25;
}

.skills-title .highlight-box.skills-highlight {
    font-size: 40px;
    margin-left: 8px;
}

.skills-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.9;
    max-width: 280px;
    text-align: right;
    padding-top: 10px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.skill-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 35px 28px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.skill-icon {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.skill-icon svg {
    width: 90px;
    height: 80px;
}

.skill-icon.yellow {
    color: #f5a623;
}

.skill-icon.blue {
    color: #4a6cf7;
}

.skill-card h3 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 12px;
    text-underline-offset: 4px;
}

.skill-card > p {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    font-family: "Bruno Ace", sans-serif;
    font-size: 14px;
    color: #000000;
    padding: 8px 0;
    font-weight: 400;
}

.skill-list li:last-child {
    border-bottom: none;
}

/* Values Section */
.values-section {
    padding: 100px 0 120px;
    background-color: #f7f7f7;
}

.values-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 70px;
}

.values-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.1 !important;
    margin-bottom: 25px;
}

.values-title .highlight-box.values-highlight {
    font-size: 40px;
    margin-left: 8px;
}

.values-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 100px;
    max-width: 750px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 10px 20px;
}

.value-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .value-icon > svg {
    width: 50px;
    height: 50px;
    color: #080808;
} */

.value-icon-star {
    position: absolute;
    top: 0;
    right: -5px;
}

.value-icon-dot {
    position: absolute;
    top: 5px;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.value-icon-dot.blue {
    background-color: #4a6cf7;
}

.value-icon-heart {
    position: absolute;
    bottom: 5px;
    right: -5px;
}

.value-icon-bars {
    position: absolute;
    top: -8px;
    right: -20px;
}

.value-card h3 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 12px;
    /* text-decoration: underline; */
    text-underline-offset: 4px;
}

.value-card p {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
}

/* ===================================
   Projects Hero Section
   =================================== */
.projects-hero {
    padding: 140px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

.projects-hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-hero-title {
    font-family: "Bruno Ace", cursive;
    font-size: 48px;
    font-weight: 400;
    color: #0c0c0c;
    line-height: 1.3;

    margin-bottom: 20px;
}

.projects-hero-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 38px;
    padding: 8px 24px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
    vertical-align: middle;
}

.projects-hero-subtitle {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filter Tabs */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-tab {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    padding: 12px 24px;
    border: 2px solid #0c0c0c;
    border-radius: 50px;
    background-color: transparent;
    color: #0c0c0c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background-color: #0c0c0c;
    color: #fff;
}

.filter-tab.active {
    background-color: #0c0c0c;
    color: #fff;
}

/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #0c0c0c;
}

.project-image {
    position: relative;
    background: linear-gradient(135deg, #f8d7e8 0%, #e8c4f5 50%, #d4c4f8 100%);
    /* padding: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.project-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.project-image .pro_image_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0c0c0c;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: "Bruno Ace", cursive;
    font-size: 12px;
    z-index: 2;
}

.project-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: "Bruno Ace", cursive;
    font-size: 28px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.project-description {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tech Icons */
.project-tech {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-3px);
}

.tech-icon.figma {
    border-radius: 8px;
    background: rgba(172, 172, 172, 0.15);
}

.tech-icon.swift {
    border-radius: 8px;
    background: rgba(255, 88, 10, 0.15);
}

.tech-icon.android {
    border-radius: 8px;
    background: rgba(151, 192, 36, 0.15);
}

.tech-icon.flutter {
    background-color: rgba(71, 197, 251, 0.15);
    border-radius: 8px;
}

/* Project Link */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #0c0c0c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 12px;
}

.project-link svg {
    transition: transform 0.3s ease;
}

.project-link:hover svg {
    transform: translateX(3px);
}

/* Projects Responsive */
@media (max-width: 992px) {
    .projects-hero {
        padding: 120px 0 60px;
    }

    .projects-hero-title {
        font-size: 38px;
    }

    .projects-hero-title .highlight-box {
        font-size: 30px;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 100px 0 50px;
    }

    .projects-hero-header {
        margin-bottom: 30px;
    }

    .projects-hero-title {
        font-size: 30px;
    }

    .projects-hero-title .highlight-box {
        font-size: 22px;
        padding: 6px 16px;
    }

    .projects-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .project-content {
        padding: 25px 30px;
    }

    .project-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        padding: 90px 0 40px;
    }

    .projects-hero-title {
        font-size: 24px;
    }

    .projects-hero-title .highlight-box {
        font-size: 18px;
    }

    .project-image {
        min-height: 200px;
        padding: 20px;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-tech {
        gap: 8px;
    }

    .tech-icon {
        width: 35px;
        height: 35px;
    }
}

/* ===================================
   Team Page Styles
   =================================== */

/* Team Hero Section */
.team-hero {
    padding: 140px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.team-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.team-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.team-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #0c0c0c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: "Bruno Ace", cursive;
    font-size: 12px;
    z-index: 2;
}

.team-hero-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    /* background-color: #fff;
    border-top: 1px solid #e0e0e0; */
}

.team-hero-social span {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #0c0c0c;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #0c0c0c;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #666;
    transform: translateY(-2px);
}

/* Team Hero Info */
.team-hero-info {
    padding-top: 20px;
}

.team-hero-title {
    font-family: "Bruno Ace", cursive;
    font-size: 42px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 20px;
}

.team-hero-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 36px;
    padding: 8px 20px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
}

.team-hero-description {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-hero-experience h3 {
    font-family: "Bruno Ace", cursive;
    font-size: 22px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.team-hero-experience p {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-hero-experience ul {
    list-style: none;
    padding: 0;
}

.team-hero-experience ul li {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.team-hero-experience ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0c0c0c;
}

/* Team Members Section */
.team-members {
    padding: 60px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: #0c0c0c;
}

.member-badge {
    display: inline-block;
    background-color: #0c0c0c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: "Bruno Ace", cursive;
    font-size: 11px;
    margin-bottom: 20px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #0c0c0c;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar.blue {
    background-color: #4f46e5;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-family: "Bruno Ace", cursive;
    font-size: 18px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 10px;
}

.member-description {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Team Articles Section */
.team-articles {
    padding: 80px 0 100px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.articles-title {
    font-family: "Bruno Ace", cursive;
    font-size: 36px;
    font-weight: 400;
    color: #0c0c0c;
    text-align: center;
    margin-bottom: 50px;
}

.articles-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 30px;
    padding: 8px 20px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #0c0c0c;
}

.article-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    padding: 20px;
    border-radius: 29px;
    display: inline-flex;
}

.article-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #0c0c0c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: "Bruno Ace", cursive;
    font-size: 11px;
}

.article-content {
    padding: 20px 25px;
}

.article-title {
    font-family: "Bruno Ace", cursive;
    font-size: 16px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-date {
    font-family: "Bruno Ace", cursive;
    font-size: 12px;
    color: #999;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #0c0c0c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 12px;
}

.article-link svg {
    transition: transform 0.3s ease;
}

.article-link:hover svg {
    transform: translateX(3px);
}

/* Team Page Responsive */
@media (max-width: 992px) {
    .team-hero {
        padding: 120px 0 60px;
    }

    .team-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .team-hero-title {
        font-size: 34px;
    }

    .team-hero-title .highlight-box {
        font-size: 28px;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 100px 0 50px;
    }

    .team-hero-title {
        font-size: 28px;
    }

    .team-hero-title .highlight-box {
        font-size: 22px;
        padding: 6px 14px;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .articles-title {
        font-size: 28px;
    }

    .articles-title .highlight-box {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .team-hero {
        padding: 90px 0 40px;
    }

    .team-hero-title {
        font-size: 24px;
    }

    .team-hero-title .highlight-box {
        font-size: 18px;
    }

    .team-hero-social {
        flex-direction: column;
        gap: 15px;
    }

    .team-hero-experience h3 {
        font-size: 18px;
    }

    .articles-title {
        font-size: 22px;
    }

    .articles-title .highlight-box {
        font-size: 18px;
    }

    .article-content {
        padding: 15px 20px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===================================
   Portfolio Page Styles
   =================================== */

/* Portfolio Hero Section */
.portfolio-hero {
    padding-top: 80px;
}

.portfolio-hero-bg {
    background: linear-gradient(
        180deg,
        #f7f7f7 0%,
        #e8d4f0 20%,
        #d4a5e8 40%,
        #b87dd4 60%,
        #9b5fc0 80%,
        #7a4a9e 100%
    );
    text-align: center;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-title {
    font-family: "Bruno Ace", cursive;
    font-size: 80px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 20px;
}

.portfolio-hero-subtitle {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #333;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 40px;
}

.portfolio-hero-mockup {
    position: relative;
    max-width: 100%;
}

.portfolio-hero-mockup img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Portfolio Details Section */
.portfolio-details {
    padding: 80px 0;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.portfolio-detail-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.portfolio-detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-text {
    font-family: "Bruno Ace", cursive;
    font-size: 16px;
    color: #0c0c0c;
}

.detail-label .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    padding: 6px 14px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 6px;
}

.detail-content {
    max-width: 500px;
}

.detail-content p {
    font-family: "Bruno Ace", cursive;
    font-size: 12px;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/* Portfolio Featured Section */
.portfolio-featured {
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 0 0 80px;
}

.featured-mockup-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.featured-mockup-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio Gallery Section */
.portfolio-gallery {
    padding: 60px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio Laptop Section */
.portfolio-laptop {
    padding: 60px 0 100px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.laptop-mockup-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.laptop-mockup-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 80px 0 100px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    text-align: center;
}

.portfolio-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.portfolio-cta-title {
    font-family: "Bruno Ace", cursive;
    font-size: 36px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.portfolio-cta-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 28px;
    padding: 8px 18px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
}

.portfolio-cta-subtitle {
    font-family: "Bruno Ace", cursive;
    font-size: 36px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 30px;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #0c0c0c;
    color: #fff;
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.portfolio-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.portfolio-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Portfolio Responsive */
@media (max-width: 992px) {
    .portfolio-hero-title {
        font-size: 60px;
    }

    .portfolio-detail-row {
        grid-template-columns: 180px 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-bg {
        padding-top: 40px;
    }

    .portfolio-hero-title {
        font-size: 48px;
    }

    .portfolio-hero-subtitle {
        font-size: 12px;
        padding: 0 20px;
    }

    .portfolio-details {
        padding: 60px 0;
    }

    .portfolio-detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .detail-content {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-laptop {
        padding: 40px 0 80px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 36px;
    }

    .portfolio-hero-subtitle {
        font-size: 11px;
    }

    .portfolio-details {
        padding: 50px 0;
    }

    .label-text {
        font-size: 14px;
    }

    .detail-label .highlight-box {
        font-size: 12px;
        padding: 5px 12px;
    }

    .detail-content p {
        font-size: 11px;
    }

    .gallery-item {
        border-radius: 15px;
    }
}

/* ===================================
   Get In Touch Hero Section
   =================================== */
.getintouch-hero {
    padding: 140px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

.getintouch-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.getintouch-hero-title {
    font-family: "Bruno Ace", cursive;
    font-size: 48px;
    font-weight: 400;
    color: #0c0c0c;
    line-height: 1.3;

    margin-bottom: 20px;
    padding-bottom: 1rem;
}

.getintouch-hero-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 38px;
    padding: 8px 24px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
    vertical-align: middle;
}

.getintouch-hero-subtitle {
    font-family: "Bruno Ace", cursive;
    font-size: 15px;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.getintouch-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background-color: #0c0c0c;
    border-radius: 30px;
    padding: 63px 44px;
    height: fit-content;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form .form-row:last-of-type {
    margin-bottom: 15px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-form input {
    background-color: transparent;
    border-radius: 16px;
    border: 2px solid #fff;
    padding: 14px 20px;
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form textarea {
    background-color: transparent;
    border-radius: 16px;
    border: 2px solid #fff;
    padding: 16px 20px;
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    min-height: 100px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #fff;
    color: #0c0c0c;
    border: none;
    border-radius: 50px;
    font-family: "Bruno Ace", cursive;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-header h3 {
    font-family: "Bruno Ace", cursive;
    font-size: 20px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 10px;
}

.contact-info-header p {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #0c0c0c;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

/* .contact-info-icon.email-icon {
    background-color: #fef3c7;
    color: #d97706;
} */

.contact-info-icon.phone-icon {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.contact-info-details {
    flex: 1;
}

.contact-label {
    font-family: "Bruno Ace", cursive;
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.contact-value {
    font-family: "Bruno Ace", cursive;
    font-size: 14px;
    color: #0c0c0c;
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    text-decoration: underline;
}

.contact-phones {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-phones li {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #0c0c0c;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-phones li::before {
    content: "•";
    color: #0c0c0c;
}

.contact-phones a {
    color: #0c0c0c;
    text-decoration: none;
}

.contact-phones a:hover {
    text-decoration: underline;
}

.contact-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0c0c0c;
    border-radius: 50%;
    color: #0c0c0c;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-arrow:hover {
    background-color: #0c0c0c;
    color: #fff;
}

/* Social Media Section */
/* .social-media-section {
    margin-top: 10px;
} */

.social-media-section h4 {
    font-family: "Bruno Ace", cursive;
    font-size: 18px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 8px;
}

.social-media-section p {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0c0c;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #666;
    transform: translateY(-2px);
}

/* Get In Touch Hero Responsive */
@media (max-width: 992px) {
    .getintouch-hero {
        padding: 120px 0 60px;
    }

    .getintouch-hero-title {
        font-size: 38px;
    }

    .getintouch-hero-title .highlight-box {
        font-size: 30px;
    }

    .getintouch-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .getintouch-hero {
        padding: 100px 0 50px;
    }

    .getintouch-hero-header {
        margin-bottom: 40px;
    }

    .getintouch-hero-title {
        font-size: 30px;
    }

    .getintouch-hero-title .highlight-box {
        font-size: 22px;
        padding: 6px 16px;
    }

    .getintouch-hero-subtitle {
        font-size: 14px;
    }

    .contact-form-card {
        padding: 30px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .getintouch-hero {
        padding: 90px 0 40px;
    }

    .getintouch-hero-title {
        font-size: 24px;
    }

    .getintouch-hero-title .highlight-box {
        font-size: 18px;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-info-card {
        padding: 15px;
    }
}

/* Offices Section */
.offices-section {
    padding: 100px 0 120px;
    background-color: #f7f7f7;
}

.offices-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 60px;
}

.offices-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.25;
}

.offices-title .highlight-box.offices-highlight {
    font-size: 40px;
    margin-left: 8px;
}

.offices-right {
    text-align: right;
    padding-top: 10px;
}

.offices-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.9;
    max-width: 280px;
    margin-bottom: 25px;
    margin-left: auto;
}

.offices-globe-wrapper {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-illustration {
    width: 400px;
    height: 400px;
}

.globe-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.office-card {
    position: absolute;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 25px 22px;
    color: #fff;
    width: 260px;
}

.office-card-left {
    left: 163px;
    top: 91px;
}

.office-card-right {
    right: 127px;
    bottom: 64px;
}

.office-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-card-left .office-pin {
    top: 10px;
    right: -16px;
}

.office-card-right .office-pin {
    top: 10px;
    left: -16px;
}

.office-pin.blue {
    background-color: #6366f1;
    color: #fff;
}

.office-pin.orange {
    background-color: #ff7a59;
    color: #fff;
}

.office-label {
    font-family: "Bruno Ace", sans-serif;
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.office-info h4 {
    font-family: "Bruno Ace", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.office-info a {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: #4a6cf7;
}

/* About Team Section */
.about-team-section {
    padding: 100px 0 120px;
    background-color: #f7f7f7;
}

.about-team-section .team-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
}

.about-team-section .team-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.25;
    margin-bottom: 25px;
}

.about-team-section .team-title .highlight-box.team-highlight {
    font-size: 40px;
}

.about-team-section .team-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 24px;
    padding: 22px 22px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team-role-badge {
    font-family: "Bruno Ace", sans-serif;
    font-size: 10px;
    color: #fff;
    background-color: #1a1a1a;
    padding: 8px 14px;
    border-radius: 20px;
}

.team-expand-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
}

.team-expand-btn:hover {
    border-color: #080808;
    background-color: #080808;
    color: #fff;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: #f5a623;
}

.team-avatar.blue-bg {
    background-color: #6366f1;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: "Bruno Ace", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 10px;
}

.team-bio {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}

/* Social Media Section */
.social-media-section {
    padding: 0px 0 40px;
    background-color: #f7f7f7;
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.social-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 48px;
    font-weight: 400;

    color: #080808;
    line-height: 1.3;
}

.social-title .highlight-box.social-highlight {
    font-size: 40px;
    margin-left: 10px;

    padding: 8px 20px;
    background: #000000;
    border-radius: 12px;
    display: inline-block;
    transform: rotate(-2deg);
}

.social-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;

    color: #666;
    line-height: 1.8;
    max-width: 260px;
    text-align: right;
    padding-top: 5px;
}

.social-gallery {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
}

.social-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.social-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Item 1: Column 1, Row 1 (top-left) */
.social-gallery-item.item-1 {
    grid-column: 1;
    grid-row: 1;
}

/* Item 2: Column 2, Rows 1-2 (center tall, full height) */
.social-gallery-item.item-2 {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Item 3: Column 3, Row 1 (top-right) */
.social-gallery-item.item-3 {
    grid-column: 3;
    grid-row: 1;
}

/* Item 4: Column 1, Row 2 (bottom-left) */
.social-gallery-item.item-4 {
    grid-column: 1;
    grid-row: 2;
}

/* Item 5: Column 3, Row 2 (bottom-right) */
.social-gallery-item.item-5 {
    grid-column: 3;
    grid-row: 2;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-stats {
        gap: 35px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .skills-header {
        flex-direction: column;
        text-align: center;
    }

    .skills-description {
        text-align: center;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        gap: 40px 50px;
    }

    .offices-content {
        flex-direction: column;
        text-align: center;
    }

    .offices-right {
        text-align: center;
    }

    .offices-description {
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .offices-globe-wrapper {
        min-height: 420px;
    }

    .globe-illustration {
        width: 340px;
        height: 340px;
    }

    .office-card {
        width: 220px;
    }

    .office-card-left {
        left: 80px;
        top: 60px;
    }

    .office-card-right {
        right: 60px;
        bottom: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-header {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    .social-title {
        font-size: 38px;
    }

    .social-title .highlight-box.social-highlight {
        font-size: 32px;
    }

    .social-description {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-title .highlight-box.about-highlight {
        font-size: 32px;
    }

    .about-avatar {
        width: 60px;
        height: 60px;
    }

    .about-avatar-1 {
        left: 2%;
        top: 30px;
    }

    .about-avatar-2 {
        right: 5%;
        top: 10px;
    }

    .about-avatar-3,
    .about-avatar-4 {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .about-stat {
        width: 45%;
    }

    .about-stat-number {
        font-size: 28px;
    }

    .skills-title,
    .values-title,
    .offices-title,
    .about-team-section .team-title,
    .social-title {
        font-size: 32px;
    }

    .skills-title .highlight-box,
    .values-title .highlight-box,
    .offices-title .highlight-box,
    .about-team-section .team-title .highlight-box,
    .social-title .highlight-box {
        font-size: 26px;
        padding: 6px 16px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .social-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 160px 160px 160px;
    }

    .social-gallery-item.item-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .social-gallery-item.item-2 {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .social-gallery-item.item-3 {
        grid-column: 1;
        grid-row: 2;
    }

    .social-gallery-item.item-4 {
        grid-column: 1;
        grid-row: 3;
    }

    .social-gallery-item.item-5 {
        grid-column: 2;
        grid-row: 3;
    }

    .offices-globe-wrapper {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .globe-illustration {
        width: 280px;
        height: 280px;
        order: 1;
    }

    .office-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 280px;
        padding: 20px 18px;
        margin: 0 auto;
    }

    .office-card-left {
        order: 0;
    }

    .office-card-right {
        order: 2;
    }

    .office-card-left .office-pin,
    .office-card-right .office-pin {
        left: auto;
        right: 20px;
        top: -16px;
    }
}

/* ========================================
   Services Detail Page Styles
======================================== */

/* Service Hero Section */
.service-hero {
    padding: 100px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.service-hero-content {
    max-width: 600px;
    margin: 0 auto 0px;
}

.service-hero-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 56px;
    font-weight: 400;

    color: #080808;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-title .highlight-box.service-highlight {
    font-size: 48px;

    background-color: #080808;
    color: #fff;
}

/* Service Hero Title with Hero Animation */
.service-hero-title.hero-headline {
    line-height: 1.35;
}

.service-hero-title.hero-headline .leak-badge {
    font-size: 48px;
    padding: 8px 20px 8px 14px;
}

.service-hero-title.hero-headline .headline-rest {
    display: block;
    font-size: 56px;
    opacity: 0;
    transform: translateY(20px);
}

/* Section Heading Animation Styles */
.section-heading .heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 8px 20px 8px 14px;
    border-radius: 12px;
    font-size: inherit;
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
}

.section-heading .heading-badge .cursor-icon {
    width: 24px;
    height: 24px;
}

.section-heading .heading-rest {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.section-heading.animated .heading-badge {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.section-heading.animated .heading-rest {
    opacity: 1;
    transform: translateY(0);
}

/* Section Heading Responsive */
@media (max-width: 768px) {
    .section-heading .heading-badge {
        padding: 6px 14px 6px 10px;
        gap: 6px;
        border-radius: 8px;
    }

    .section-heading .heading-badge .cursor-icon {
        width: 18px;
        height: 18px;
    }

    .service-hero-title.hero-headline .leak-badge {
        font-size: 32px;
        padding: 6px 14px 6px 10px;
    }

    .service-hero-title.hero-headline .headline-rest {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .section-heading .heading-badge {
        padding: 5px 12px 5px 8px;
        gap: 5px;
        border-radius: 6px;
    }

    .section-heading .heading-badge .cursor-icon {
        width: 14px;
        height: 14px;
    }

    .service-hero-title.hero-headline .leak-badge {
        font-size: 24px;
        padding: 5px 12px 5px 8px;
    }

    .service-hero-title.hero-headline .headline-rest {
        font-size: 28px;
    }
}

.service-hero-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Design Mockup Illustration */
.service-hero-illustration {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* New Service Mockup Container - Merge Animation Ready */
.service-mockup-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Allow overflow for merge animation */
    overflow: visible;
}

.service-hero-illustration {
    overflow: visible;
}

.mockup-main-image {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
    will-change: transform, opacity;
}

.mockup-main-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.mockup-float-element {
    position: absolute;
    transition: filter 0.3s ease;
    will-change: transform, opacity;
}

.mockup-float-element img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.mockup-float-element:hover img {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

/* Toolbar - positioned on left side overlapping main mockup */
.mockup-toolbar-float {
    top: 50%;
    left: 82px;
    transform: translateY(-50%);
    width: 70px;
    z-index: 10;
}

/* Hand with card - positioned on top right */
.mockup-hand-float {
    top: 82px;
    right: 80px;
    width: 260px;
    z-index: 10;
}

/* Profile card - positioned on bottom right */
.mockup-profile-float {
    bottom: 29px;
    right: 102px;
    width: 100px;
    z-index: 10;
}

/* Cursor - positioned in center-bottom area */
.mockup-cursor-float {
    bottom: 76px;
    left: 37%;
    width: 55px;
    z-index: 15;
}

/* Responsive Mockup Container */
@media (max-width: 1024px) {
    .service-mockup-container {
        max-width: 600px;
        height: 380px;
    }

    .mockup-main-image {
        max-width: 420px;
    }

    .mockup-toolbar-float {
        left: 60px;
        width: 60px;
    }

    .mockup-hand-float {
        top: 60px;
        right: 50px;
        width: 220px;
    }

    .mockup-profile-float {
        bottom: 50px;
        right: 120px;
        width: 130px;
    }

    .mockup-cursor-float {
        bottom: 25px;
        width: 45px;
    }
}

@media (max-width: 768px) {
    .service-mockup-container {
        max-width: 500px;
        height: 340px;
    }

    .mockup-main-image {
        max-width: 350px;
    }

    .mockup-toolbar-float {
        left: 40px;
        width: 50px;
    }

    .mockup-hand-float {
        top: 40px;
        right: 20px;
        width: 180px;
    }

    .mockup-profile-float {
        bottom: 40px;
        right: 80px;
        width: 110px;
    }

    .mockup-cursor-float {
        bottom: 20px;
        left: 35%;
        width: 40px;
    }
}

@media (max-width: 600px) {
    .service-mockup-container {
        max-width: 100%;
        height: 300px;
        padding: 0 10px;
    }

    .mockup-main-image {
        max-width: 280px;
    }

    .mockup-toolbar-float {
        left: 10px;
        width: 40px;
    }

    .mockup-hand-float {
        top: 20px;
        right: 0;
        width: 140px;
    }

    .mockup-profile-float {
        bottom: 20px;
        right: 40px;
        width: 90px;
    }

    .mockup-cursor-float {
        bottom: 15px;
        left: 32%;
        width: 35px;
    }
}

@media (max-width: 480px) {
    .service-mockup-container {
        height: 260px;
    }

    .mockup-main-image {
        max-width: 220px;
    }

    .mockup-toolbar-float {
        left: 0;
        width: 35px;
    }

    .mockup-hand-float {
        top: 10px;
        right: -10px;
        width: 110px;
    }

    .mockup-profile-float {
        bottom: 10px;
        right: 20px;
        width: 75px;
    }

    .mockup-cursor-float {
        bottom: 10px;
        left: 30%;
        width: 28px;
    }
}

.design-mockup {
    position: relative;
    background: #faf9f6;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    min-height: 350px;
}

.mockup-toolbar {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #080808;
    border-radius: 30px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toolbar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.toolbar-icon:hover {
    transform: scale(1.1);
}

.mockup-canvas {
    margin-left: 80px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.canvas-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
}

.sidebar-block {
    background: #f7b733;
    border-radius: 8px;
    height: 50px;
}

.sidebar-block.small {
    height: 30px;
    background: #e0e0e0;
}

.canvas-main {
    flex: 1;
    display: flex;
    gap: 15px;
    position: relative;
}

.main-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image.yellow {
    width: 180px;
    height: 120px;
    background: #f7b733;
    border: 2px dashed #333;
}

.main-image.blue {
    width: 120px;
    height: 100px;
    background: #4a6cf7;
    position: absolute;
    right: 50px;
    top: 20px;
}

.canvas-lines {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
}

.canvas-lines .line {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.canvas-lines .line.short {
    width: 60%;
}

.canvas-content-blocks {
    position: absolute;
    bottom: 30px;
    left: 100px;
    display: flex;
    gap: 15px;
}

.content-block {
    width: 80px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 8px;
}

.content-block.wide {
    width: 150px;
    background: #ff7a59;
}

.mockup-hand {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 150px;
}

.mockup-hand img {
    width: 100%;
}

.mockup-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 140px;
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 3px solid #f7b733;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-lines {
    margin-bottom: 10px;
}

.card-line {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 5px;
}

.card-line.short {
    width: 70%;
}

.card-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: #f7b733;
    font-size: 14px;
}

.card-stars .empty {
    color: #e0e0e0;
}

.mockup-cursor {
    position: absolute;
    left: 50%;
    bottom: 60px;
}

.color-tag {
    position: absolute;
    width: 40px;
    height: 15px;
    border-radius: 8px;
}

.color-tag.red {
    background: #ff7a59;
    top: 80px;
    right: 120px;
}

.color-tag.orange {
    background: #f7b733;
    top: 100px;
    right: 100px;
}

.service-cta {
    margin-bottom: 30px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.arrow-btn:hover {
    color: #080808;
}

/* Benefits Section */
.service-benefits {
    padding: 80px 0;
    background: #f7f7f7;
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.benefits-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.3;
}

.benefits-title .highlight-box.benefits-highlight {
    font-size: 36px;

    background-color: #080808;
    color: #fff;
}

.benefits-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;

    color: #666;
    line-height: 1.8;
    max-width: 400px;
    text-align: right;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefits-grid.four_grid {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 10px;
}

.benefit-text {
    font-family: "Bruno Ace", sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}

/* Examples Section */
.service-examples {
    padding: 0px 0;
    background: #f7f7f7;
    overflow: hidden;
    padding-top: 80px;
}

.examples-header {
    text-align: center;
}

.examples-title {
    font-family: "Bruno Ace", sans-serif;
    font-size: 44px;
    font-weight: 400;

    color: #080808;
    line-height: 1.3;
    margin-bottom: 20px;
}

.examples-title .highlight-box.examples-highlight {
    font-size: 36px;

    background-color: #080808;
    color: #fff;
}

.examples-description {
    font-family: "Bruno Ace", sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Service Benefits Responsive - Large Screens */
@media (max-width: 1200px) {
    .service-benefits {
        padding: 70px 0;
    }

    .benefits-header {
        margin-bottom: 50px;
        gap: 35px;
    }

    .benefits-title {
        font-size: 40px;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 32px;
    }

    .benefits-description {
        font-size: 12px;
        max-width: 280px;
    }

    .benefits-grid {
        gap: 35px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .benefit-title {
        font-size: 17px;
    }

    .benefit-text {
        font-size: 11px;
    }
}

/* Service Benefits Responsive - Tablets */
@media (max-width: 992px) {
    .service-benefits {
        padding: 60px 0;
    }

    .benefits-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 45px;
        gap: 20px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 30px;
    }

    .benefits-description {
        text-align: center;
        max-width: 450px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .benefits-grid.four_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card {
        padding: 15px;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .benefit-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .benefit-text {
        font-size: 11px;
        line-height: 1.6;
    }
}

/* Service Benefits Responsive - Small Tablets */
@media (max-width: 768px) {
    .service-benefits {
        padding: 50px 0;
    }

    .benefits-header {
        margin-bottom: 40px;
        gap: 15px;
        text-align: center;
    }

    .benefits-title-wrapper {
        margin: 0 auto;
    }

    .benefits-title {
        font-size: 30px;
        line-height: 1.4;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 26px;
    }

    .benefits-description {
        font-size: 11px;
        max-width: 380px;
        line-height: 1.7;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        margin: 0 auto;
    }

    .benefits-grid.four_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .benefit-card {
        padding: 12px;
        text-align: center;
        margin: 0 auto;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 12px;
    }

    .benefit-title {
        font-size: 15px;
        margin-bottom: 6px;
        text-align: center;
    }

    .benefit-text {
        font-size: 10px;
        text-align: center;
    }
}

/* Service Benefits Responsive - Large Phones */
@media (max-width: 576px) {
    .service-benefits {
        padding: 40px 0;
    }

    .benefits-header {
        margin-bottom: 35px;
        gap: 12px;
        text-align: center;
    }

    .benefits-title-wrapper {
        margin: 0 auto;
    }

    .benefits-title {
        font-size: 26px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 22px;
    }

    .benefits-description {
        font-size: 10px;
        max-width: 320px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 auto;
    }

    .benefit-card {
        padding: 10px;
        text-align: center;
        margin: 0 auto;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .benefit-title {
        font-size: 13px;
        margin-bottom: 5px;
        text-align: center;
    }

    .benefit-text {
        font-size: 9px;
        line-height: 1.5;
        text-align: center;
    }
}

/* Service Benefits Responsive - Small Phones */
@media (max-width: 480px) {
    .service-benefits {
        padding: 35px 0;
    }

    .benefits-header {
        margin-bottom: 30px;
        gap: 10px;
        text-align: center;
    }

    .benefits-title-wrapper {
        margin: 0 auto;
    }

    .benefits-title {
        font-size: 22px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 18px;
    }

    .benefits-description {
        font-size: 9px;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }

    .benefit-card {
        padding: 15px;
        text-align: center;
        margin: 0 auto;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 12px;
    }

    .benefit-title {
        font-size: 14px;
        margin-bottom: 6px;
        text-align: center;
    }

    .benefit-text {
        font-size: 10px;
        line-height: 1.6;
        text-align: center;
    }
}

/* Service Benefits Responsive - Extra Small Phones */
@media (max-width: 360px) {
    .service-benefits {
        padding: 30px 0;
    }

    .benefits-header {
        margin-bottom: 25px;
        text-align: center;
    }

    .benefits-title-wrapper {
        margin: 0 auto;
    }

    .benefits-title {
        font-size: 20px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-title .highlight-box.benefits-highlight {
        font-size: 16px;
    }

    .benefits-description {
        font-size: 9px;
        max-width: 250px;
        text-align: center;
        margin: 0 auto;
    }

    .benefits-grid {
        gap: 18px;
        max-width: 260px;
        margin: 0 auto;
    }

    .benefit-card {
        padding: 12px;
        text-align: center;
        margin: 0 auto;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
    }

    .benefit-title {
        font-size: 13px;
        text-align: center;
    }

    .benefit-text {
        font-size: 9px;
        text-align: center;
    }
}

/* Service Hero - Large Screens (1200px and below) */
@media (max-width: 1200px) {
    .service-hero-illustration {
        max-width: 700px;
    }

    .service-mockup-container {
        max-width: 600px;
        height: 380px;
    }

    .mockup-main-image {
        max-width: 450px;
    }

    .mockup-toolbar-float {
        left: 60px;
        width: 60px;
    }

    .mockup-hand-float {
        width: 220px;
        top: 70px;
        right: 40px;
    }

    .mockup-profile-float {
        width: 130px;
        bottom: 55px;
        right: 120px;
    }

    .mockup-cursor-float {
        width: 50px;
        bottom: 76px;
    }
}

/* Service Hero - Tablets (992px and below) */
@media (max-width: 992px) {
    .service-hero {
        padding: 120px 0 70px;
    }

    .service-hero-content {
        max-width: 500px;
        padding: 0 20px;
    }

    .service-hero-title {
        font-size: 48px;
    }

    .service-hero-title .highlight-box.service-highlight {
        font-size: 40px;
    }

    .service-hero-description {
        font-size: 13px;
        max-width: 450px;
    }

    .service-hero-illustration {
        max-width: 600px;
        padding: 0 20px;
    }

    .service-mockup-container {
        max-width: 520px;
        height: 350px;
    }

    .mockup-main-image {
        max-width: 380px;
    }

    .mockup-toolbar-float {
        left: 40px;
        width: 55px;
    }

    .mockup-hand-float {
        width: 180px;
        top: 60px;
        right: 20px;
    }

    .mockup-profile-float {
        width: 115px;
        bottom: 45px;
        right: 90px;
    }

    .mockup-cursor-float {
        width: 45px;
        bottom: 22px;
        left: 36%;
    }
}

/* Service Hero - Small Tablets (768px and below) */
@media (max-width: 768px) {
    .service-hero {
        padding: 110px 0 50px;
    }

    .service-hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-hero-title .highlight-box.service-highlight {
        font-size: 32px;
    }

    .service-hero-description {
        font-size: 12px;
        max-width: 400px;
        line-height: 1.7;
    }

    .service-hero-illustration {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .service-mockup-container {
        max-width: 420px;
        height: 300px;
    }

    .mockup-main-image {
        max-width: 300px;
    }

    .mockup-toolbar-float {
        width: 45px;
        left: 25px;
    }

    .mockup-hand-float {
        width: 150px;
        top: 45px;
        right: 5px;
    }

    .mockup-profile-float {
        width: 95px;
        bottom: 35px;
        right: 65px;
    }

    .mockup-cursor-float {
        width: 38px;
        bottom: 18px;
        left: 34%;
    }

    .service-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .design-mockup {
        min-height: 250px;
        padding: 20px;
    }

    .mockup-toolbar {
        display: none;
    }

    .mockup-canvas {
        margin-left: 0;
    }
}

/* Service Hero - Large Phones (576px and below) */
@media (max-width: 576px) {
    .service-hero {
        padding: 100px 0 40px;
    }

    .service-hero-content {
        padding: 0 15px;
    }

    .service-hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .service-hero-title .highlight-box.service-highlight {
        font-size: 28px;
    }

    .service-hero-description {
        font-size: 11px;
        max-width: 320px;
    }

    .service-hero-illustration {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .service-mockup-container {
        max-width: 340px;
        height: 260px;
    }

    .mockup-main-image {
        max-width: 250px;
    }

    .mockup-toolbar-float {
        width: 38px;
        left: 15px;
    }

    .mockup-hand-float {
        width: 120px;
        top: 35px;
        right: 0;
    }

    .mockup-profile-float {
        width: 80px;
        bottom: 28px;
        right: 45px;
    }

    .mockup-cursor-float {
        width: 32px;
        bottom: 14px;
        left: 32%;
    }

    .service-cta {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Service Hero - Small Phones (480px and below) */
@media (max-width: 480px) {
    .service-hero {
        padding: 90px 0 35px;
    }

    .service-hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-hero-title .highlight-box.service-highlight {
        font-size: 24px;
    }

    .service-hero-description {
        font-size: 10px;
        max-width: 280px;
        line-height: 1.6;
    }

    .service-mockup-container {
        max-width: 300px;
        height: 230px;
    }

    .mockup-main-image {
        max-width: 220px;
    }

    .mockup-toolbar-float {
        width: 32px;
        left: 10px;
    }

    .mockup-hand-float {
        width: 100px;
        top: 28px;
        right: -5px;
    }

    .mockup-profile-float {
        width: 68px;
        bottom: 22px;
        right: 35px;
    }

    .mockup-cursor-float {
        width: 28px;
        bottom: 10px;
        left: 30%;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Service Hero - Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .service-hero {
        padding: 85px 0 30px;
    }

    .service-hero-title {
        font-size: 24px;
    }

    .service-hero-title .highlight-box.service-highlight {
        font-size: 20px;
    }

    .service-hero-description {
        font-size: 9px;
        max-width: 250px;
    }

    .service-mockup-container {
        max-width: 260px;
        height: 200px;
    }

    .mockup-main-image {
        max-width: 190px;
    }

    .mockup-toolbar-float {
        width: 28px;
        left: 5px;
    }

    .mockup-hand-float {
        width: 85px;
        top: 22px;
        right: -8px;
    }

    .mockup-profile-float {
        width: 58px;
        bottom: 18px;
        right: 28px;
    }

    .mockup-cursor-float {
        width: 24px;
        bottom: 8px;
        left: 28%;
    }
}

/* ===================================
   Services Hero Section
   =================================== */
.services-hero {
    padding: 140px 0 80px;
    background-color: #f7f7f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.services-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero-title {
    font-family: "Bruno Ace", cursive;
    font-size: 48px;
    font-weight: 400;
    color: #0c0c0c;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 0.5rem;
}

.services-hero-title .highlight-box {
    font-family: "Bruno Ace", cursive;
    font-size: 38px;
    padding: 4px 16px;
    transform: rotate(-3deg);
    display: inline-flex;
    background-color: #0c0c0c;
    color: #fff;
    border-radius: 8px;
    vertical-align: middle;
}

.services-hero-subtitle {
    font-family: "Bruno Ace", cursive;
    font-size: 15px;
    color: #666;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-item {
    background: transparent;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
    border-radius: 30px;
    border: 2px solid transparent;
}

.service-card-item:hover {
    transform: translateY(-5px);
    border-color: #000;
}

.service-card-item .service-card-link {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.service-card-item:hover .service-card-link {
    opacity: 1;
    visibility: visible;
}

/* Offset positions for scattered layout effect */
.service-card-item:nth-child(1) {
    transform: translateY(20px);
}

.service-card-item:nth-child(2) {
    transform: translateY(-10px);
}

.service-card-item:nth-child(3) {
    transform: translateY(-30px);
}

.service-card-item:nth-child(4) {
    transform: translateY(0px);
}

.service-card-item:nth-child(5) {
    transform: translateY(-20px);
}

.service-card-item:nth-child(6) {
    transform: translateY(-44px);
}

.service-card-item:nth-child(1):hover,
.service-card-item:nth-child(2):hover,
.service-card-item:nth-child(3):hover,
.service-card-item:nth-child(4):hover,
.service-card-item:nth-child(5):hover,
.service-card-item:nth-child(6):hover {
    transform: translateY(-10px);
    border-color: #000;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-title {
    font-family: "Bruno Ace", cursive;
    font-size: 18px;
    font-weight: 400;
    color: #0c0c0c;
    margin-bottom: 12px;
}

.service-card-text {
    font-family: "Bruno Ace", cursive;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* Dark card variant */
.service-card-item.service-card-dark {
    border-color: #000;
    padding: 35px 25px;
}

.service-card-item.service-card-dark .service-card-link {
    opacity: 1;
    visibility: visible;
}

/* .service-card-item.service-card-dark .service-card-title {
    color: #fff;
}

.service-card-item.service-card-dark .service-card-text {
    color: rgba(255, 255, 255, 0.7);
} */

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;

    color: #0c0c0c;
    font-family: "Bruno Ace";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 125% */
}

.link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card-link:hover .link-arrow {
    transform: translate(3px, -3px);
}

/* Services Hero Responsive */
@media (max-width: 992px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .services-hero-title {
        font-size: 38px;
    }

    .services-hero-title .highlight-box {
        font-size: 30px;
    }

    .services-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-item:nth-child(1),
    .service-card-item:nth-child(2),
    .service-card-item:nth-child(3),
    .service-card-item:nth-child(4),
    .service-card-item:nth-child(5),
    .service-card-item:nth-child(6) {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 50px;
    }

    .services-hero-header {
        margin-bottom: 40px;
    }

    .services-hero-title {
        font-size: 30px;
    }

    .services-hero-title .highlight-box {
        font-size: 22px;
        padding: 3px 12px;
    }

    .services-hero-subtitle {
        font-size: 14px;
        max-width: 350px;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .service-card-item {
        padding: 25px 20px;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 90px 0 40px;
    }

    .services-hero-title {
        font-size: 24px;
    }

    .services-hero-title .highlight-box {
        font-size: 18px;
    }

    .services-hero-subtitle {
        font-size: 13px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===================================
   Hero Headline Responsive Styles
   =================================== */

/* Base hero-headline styles for section headings */
.hero-headline {
    display: block;
    line-height: 1.1;
}

.hero-headline .headline-rest {
    display: inline;
}

.hero-headline .leak-badge {
    vertical-align: middle;
    transform: none;
    opacity: 1;
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
    .hero-headline {
        font-size: 54px;
    }

    .hero-headline .leak-badge {
        font-size: 48px;
        padding: 8px 20px 8px 14px;
        border-radius: 12px;
        gap: 8px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 49px;
        height: 49px;
        left: -39px;
        bottom: 10px;
    }
}

/* Large screens: 1024px - 1199px */
@media (max-width: 1199px) {
    .hero-headline {
        font-size: 48px;
    }

    .hero-headline .leak-badge {
        font-size: 42px;
        padding: 7px 18px 7px 12px;
        border-radius: 11px;
        gap: 7px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 44px;
        height: 44px;
        left: -35px;
        bottom: 9px;
    }
}

/* Medium screens: 768px - 1023px */
@media (max-width: 1023px) {
    .hero-headline {
        font-size: 40px;
    }

    .hero-headline .leak-badge {
        font-size: 36px;
        padding: 6px 16px 6px 10px;
        border-radius: 10px;
        gap: 6px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 38px;
        height: 38px;
        left: -30px;
        bottom: 8px;
    }
}

/* Tablets: 768px */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 34px;
    }

    .hero-headline .leak-badge {
        font-size: 30px;
        padding: 5px 14px 5px 9px;
        border-radius: 9px;
        gap: 5px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 32px;
        height: 32px;
        left: -25px;
        bottom: 7px;
    }
}

/* Small tablets / Large phones: 600px */
@media (max-width: 600px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-headline .leak-badge {
        font-size: 24px;
        padding: 5px 12px 5px 8px;
        border-radius: 8px;
        gap: 4px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 26px;
        height: 26px;
        left: -20px;
        bottom: 6px;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero-headline .leak-badge {
        font-size: 20px;
        padding: 4px 10px 4px 6px;
        border-radius: 7px;
        gap: 3px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 22px;
        height: 22px;
        left: -17px;
        bottom: 5px;
    }
}

/* Small Mobile: 375px */
@media (max-width: 375px) {
    .hero-headline {
        font-size: 20px;
        line-height: 1.5;
    }

    .hero-headline .leak-badge {
        font-size: 17px;
        padding: 3px 8px 3px 5px;
        border-radius: 6px;
        gap: 2px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 18px;
        height: 18px;
        left: -14px;
        bottom: 4px;
    }
}

/* Extra Small Mobile: 320px */
@media (max-width: 320px) {
    .hero-headline {
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-headline .leak-badge {
        font-size: 15px;
        padding: 3px 7px 3px 4px;
        border-radius: 5px;
        gap: 2px;
    }

    .hero-headline .leak-badge .cursor-icon {
        width: 16px;
        height: 16px;
        left: -12px;
        bottom: 3px;
    }
}

/* ===================================
   Page-specific heading overrides
   =================================== */

/* Home page hero - larger sizes */
.hero .hero-headline {
    text-align: center;
}

@media (max-width: 768px) {
    .hero .hero-headline {
        font-size: 36px;
    }

    .hero .hero-headline .leak-badge {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero .hero-headline {
        font-size: 28px;
    }

    .hero .hero-headline .leak-badge {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .hero .hero-headline {
        font-size: 24px;
    }

    .hero .hero-headline .leak-badge {
        font-size: 20px;
    }
}

/* About page hero */
.about-hero .hero-headline {
    text-align: center;
}

@media (max-width: 768px) {
    .about-hero .hero-headline {
        font-size: 36px;
        text-align: center;
    }

    .about-hero .hero-headline .leak-badge {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-headline {
        font-size: 28px;
    }

    .about-hero .hero-headline .leak-badge {
        font-size: 24px;
    }
}

/* Services page hero */
.services-hero .hero-headline {
    text-align: center;
}

@media (max-width: 768px) {
    .services-hero .hero-headline {
        font-size: 32px;
    }

    .services-hero .hero-headline .leak-badge {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero .hero-headline {
        font-size: 26px;
    }

    .services-hero .hero-headline .leak-badge {
        font-size: 22px;
    }
}

/* Section headings - slightly smaller than hero */
.services-header .hero-headline,
.portfolio-header .hero-headline,
.process-left .hero-headline,
.team-header-row .hero-headline,
.testimonials-header .hero-headline,
.faq-header .hero-headline,
.articles-header .hero-headline,
.benefits-header .hero-headline,
.examples-header .hero-headline,
.values-header .hero-headline,
.offices-left .hero-headline,
.team-header .hero-headline,
.social-header .hero-headline {
    font-size: 48px;
}

@media (max-width: 1199px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 42px;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 38px;
    }
}

@media (max-width: 1023px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 36px;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 30px;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 26px;
        padding: 5px 12px 5px 8px;
    }

    .services-header .hero-headline .leak-badge .cursor-icon,
    .portfolio-header .hero-headline .leak-badge .cursor-icon,
    .process-left .hero-headline .leak-badge .cursor-icon,
    .team-header-row .hero-headline .leak-badge .cursor-icon,
    .testimonials-header .hero-headline .leak-badge .cursor-icon,
    .faq-header .hero-headline .leak-badge .cursor-icon,
    .articles-header .hero-headline .leak-badge .cursor-icon,
    .benefits-header .hero-headline .leak-badge .cursor-icon,
    .examples-header .hero-headline .leak-badge .cursor-icon,
    .values-header .hero-headline .leak-badge .cursor-icon,
    .offices-left .hero-headline .leak-badge .cursor-icon,
    .team-header .hero-headline .leak-badge .cursor-icon,
    .social-header .hero-headline .leak-badge .cursor-icon {
        width: 28px;
        height: 28px;
        left: -22px;
        bottom: 6px;
    }
}

@media (max-width: 600px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 26px;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 22px;
        padding: 4px 10px 4px 7px;
    }

    .services-header .hero-headline .leak-badge .cursor-icon,
    .portfolio-header .hero-headline .leak-badge .cursor-icon,
    .process-left .hero-headline .leak-badge .cursor-icon,
    .team-header-row .hero-headline .leak-badge .cursor-icon,
    .testimonials-header .hero-headline .leak-badge .cursor-icon,
    .faq-header .hero-headline .leak-badge .cursor-icon,
    .articles-header .hero-headline .leak-badge .cursor-icon,
    .benefits-header .hero-headline .leak-badge .cursor-icon,
    .examples-header .hero-headline .leak-badge .cursor-icon,
    .values-header .hero-headline .leak-badge .cursor-icon,
    .offices-left .hero-headline .leak-badge .cursor-icon,
    .team-header .hero-headline .leak-badge .cursor-icon,
    .social-header .hero-headline .leak-badge .cursor-icon {
        width: 24px;
        height: 24px;
        left: -18px;
        bottom: 5px;
    }
}

@media (max-width: 480px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 22px;
        line-height: 1.4;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 18px;
        padding: 4px 9px 4px 6px;
        border-radius: 6px;
    }

    .services-header .hero-headline .leak-badge .cursor-icon,
    .portfolio-header .hero-headline .leak-badge .cursor-icon,
    .process-left .hero-headline .leak-badge .cursor-icon,
    .team-header-row .hero-headline .leak-badge .cursor-icon,
    .testimonials-header .hero-headline .leak-badge .cursor-icon,
    .faq-header .hero-headline .leak-badge .cursor-icon,
    .articles-header .hero-headline .leak-badge .cursor-icon,
    .benefits-header .hero-headline .leak-badge .cursor-icon,
    .examples-header .hero-headline .leak-badge .cursor-icon,
    .values-header .hero-headline .leak-badge .cursor-icon,
    .offices-left .hero-headline .leak-badge .cursor-icon,
    .team-header .hero-headline .leak-badge .cursor-icon,
    .social-header .hero-headline .leak-badge .cursor-icon {
        width: 20px;
        height: 20px;
        left: -15px;
        bottom: 4px;
    }
}

@media (max-width: 375px) {
    .services-header .hero-headline,
    .portfolio-header .hero-headline,
    .process-left .hero-headline,
    .team-header-row .hero-headline,
    .testimonials-header .hero-headline,
    .faq-header .hero-headline,
    .articles-header .hero-headline,
    .benefits-header .hero-headline,
    .examples-header .hero-headline,
    .values-header .hero-headline,
    .offices-left .hero-headline,
    .team-header .hero-headline,
    .social-header .hero-headline {
        font-size: 19px;
        line-height: 1.5;
    }

    .services-header .hero-headline .leak-badge,
    .portfolio-header .hero-headline .leak-badge,
    .process-left .hero-headline .leak-badge,
    .team-header-row .hero-headline .leak-badge,
    .testimonials-header .hero-headline .leak-badge,
    .faq-header .hero-headline .leak-badge,
    .articles-header .hero-headline .leak-badge,
    .benefits-header .hero-headline .leak-badge,
    .examples-header .hero-headline .leak-badge,
    .values-header .hero-headline .leak-badge,
    .offices-left .hero-headline .leak-badge,
    .team-header .hero-headline .leak-badge,
    .social-header .hero-headline .leak-badge {
        font-size: 16px;
        padding: 3px 8px 3px 5px;
        border-radius: 5px;
    }

    .services-header .hero-headline .leak-badge .cursor-icon,
    .portfolio-header .hero-headline .leak-badge .cursor-icon,
    .process-left .hero-headline .leak-badge .cursor-icon,
    .team-header-row .hero-headline .leak-badge .cursor-icon,
    .testimonials-header .hero-headline .leak-badge .cursor-icon,
    .faq-header .hero-headline .leak-badge .cursor-icon,
    .articles-header .hero-headline .leak-badge .cursor-icon,
    .benefits-header .hero-headline .leak-badge .cursor-icon,
    .examples-header .hero-headline .leak-badge .cursor-icon,
    .values-header .hero-headline .leak-badge .cursor-icon,
    .offices-left .hero-headline .leak-badge .cursor-icon,
    .team-header .hero-headline .leak-badge .cursor-icon,
    .social-header .hero-headline .leak-badge .cursor-icon {
        width: 17px;
        height: 17px;
        left: -13px;
        bottom: 3px;
    }
}
