/* Web Design Page Styles */

/* Common Utilities */
.web-design-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.bg-light-blue {
    background-color: #f8fbff;
}

.bg-dark {
    background-color: #0b1c3b;
}

.text-white {
    color: #ffffff;
}

.text-blue {
    color: #0d6efd;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-title.text-white {
    color: #fff;
}

.btn-glow {
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.4);
}

/* Hero Section */
.web-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f4f9ff 0%, #ffffff 100%);
    position: relative;
}

.web-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.badge-light-blue {
    display: inline-block;
    padding: 6px 16px;
    background: #e6f0ff;
    border-radius: 50px;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.web-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #0b1c3b;
    margin-bottom: 24px;
}

.web-hero__desc {
    font-size: 16px;
    color: #4a5568;
    max-width: 90%;
}

.web-hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15);
}

.web-hero__img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.web-hero__image-wrapper:hover .web-hero__img {
    transform: scale(1.05);
}

.hero-optin {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(13, 110, 253, 0.15);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.hero-optin__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-optin__title i {
    color: #0d6efd;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(13,110,253,0.5));
}

.hero-optin__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-optin__inputs {
    display: flex;
    gap: 12px;
}

.optin-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 0 16px;
    height: 48px;
    transition: all 0.3s;
}

.optin-input:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.optin-input i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 16px;
    opacity: 0.8;
}

.optin-input input,
.optin-input select {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
}

.optin-input input {
    cursor: text;
}

.optin-input select:invalid {
    color: #a0aec0;
}

.optin-input select option {
    color: #1a1a1a;
}

.optin-input input::placeholder {
    color: #a0aec0;
}

.btn-optin {
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    background: #0d6efd;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-optin:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Idea to Reality Section */
.idea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.idea-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13,110,253,0.05);
    z-index: 1;
}

.idea-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,110,253,0.03) 0%, rgba(0,210,255,0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.idea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13,110,253,0.1);
    border-color: rgba(13,110,253,0.2);
}

.idea-card:hover::before {
    opacity: 1;
}

.idea-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(13,110,253,0.04);
    line-height: 1;
    z-index: -1;
    transition: all 0.5s ease;
}

.idea-card:hover .idea-number {
    color: rgba(13,110,253,0.08);
    transform: scale(1.1) rotate(-5deg);
}

.idea-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(13,110,253,0.3);
    transition: all 0.4s ease;
}

.idea-card:hover .idea-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(13,110,253,0.4);
}

.idea-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b1c3b;
    position: relative;
    display: inline-block;
}

.idea-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #0d6efd;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.idea-card:hover h3::after {
    width: 100%;
}

.idea-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    margin-top: 15px;
}

.idea-card.highlighted {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(13,110,253,0.25);
    margin-top: -20px;
    margin-bottom: 20px;
}

.idea-card.highlighted:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13,110,253,0.35);
}

.idea-card.highlighted .idea-number {
    color: rgba(255,255,255,0.08);
}

.idea-card.highlighted .idea-icon {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.idea-card.highlighted h3 {
    color: #fff;
}

.idea-card.highlighted h3::after {
    background: rgba(255,255,255,0.5);
}

.idea-card.highlighted p {
    color: rgba(255,255,255,0.9);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(13,110,253,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(13, 110, 253, 0.15);
    filter: blur(35px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transition: all 0.8s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(13,110,253,0.1);
    border-color: rgba(13,110,253,0.3);
}

.feature-card:hover::after {
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.25);
    top: -40px;
    right: -40px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
    border: 1px solid #e6f0ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    animation: floatIcon 2s ease-in-out infinite;
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(13,110,253,0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b1c3b;
}

.feature-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

/* Styles Showcase */
.web-styles {
    padding: 80px 0;
}

.styles-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.style-box {
    position: relative;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(13,110,253,0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.style-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12);
    border-color: rgba(13,110,253,0.3);
}

.browser-bar {
    padding: 15px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    z-index: 5;
}
.box-dark .browser-bar, .box-3d .browser-bar, .box-visual .browser-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}
.browser-bar .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}
.browser-bar .dot:nth-child(1) { background: #ff5f56; }
.browser-bar .dot:nth-child(2) { background: #ffbd2e; }
.browser-bar .dot:nth-child(3) { background: #27c93f; }

.box-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.box-num {
    font-size: 14px;
    font-weight: 800;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.box-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #f0f6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
}

.style-box:hover .box-icon {
    transform: scale(1.1) rotate(5deg);
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

.style-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.style-box p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Specific Bento Grid Layout */
.box-minimal { grid-column: span 5; grid-row: span 2; }
.box-flat { grid-column: span 3; }
.box-dark { grid-column: span 4; }
.box-asymmetric { grid-column: span 3; }
.box-3d { grid-column: span 4; grid-row: span 2; }
.box-visual { grid-column: span 8; }

/* 1. Minimal - Extra clean, grid background */
.box-minimal {
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #ffffff;
}
.box-minimal .box-content { justify-content: center; }
.box-minimal h3 { font-size: 28px; }

/* 2. Flat - Solid color */
.box-flat {
    background: #f1f5f9;
    border-radius: 0 24px 0 24px;
}

/* 3. Dark Mode */
.box-dark {
    background: #0f172a;
    border-color: #1e293b;
}
.box-dark .box-num { background: #1e293b; color: #94a3b8; }
.box-dark h3 { color: #f8fafc; }
.box-dark p { color: #94a3b8; }
.box-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    background: #3b82f6;
    filter: blur(80px);
    opacity: 0.5;
    transition: all 0.5s ease;
}
.box-dark:hover .box-bg-glow {
    width: 250px; height: 250px;
    background: #60a5fa;
    opacity: 0.7;
}

/* 4. Asymmetric */
.box-asymmetric { border-radius: 40px 8px 40px 8px; }
.box-asymmetric:hover { border-radius: 8px 40px 8px 40px; }

/* 5. 3D */
.box-3d { background: linear-gradient(135deg, #4f46e5, #ec4899); }
.box-3d .box-num { background: rgba(255,255,255,0.2); color: #fff; }
.box-3d h3, .box-3d p { color: #fff; }
.box-3d .box-icon { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(10px); }
.box-3d:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 20px 20px 0px rgba(79, 70, 229, 0.2);
}

/* 6. Visual */
.box-visual { background: #000; }
.visual-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/marketing_laptop.webp') center/cover no-repeat;
    opacity: 0.6;
    transition: all 0.8s ease;
}
.box-visual:hover .visual-bg {
    transform: scale(1.05);
    opacity: 0.8;
}
.box-visual .box-num { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(5px); }
.box-visual h3, .box-visual p { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.box-visual .box-icon { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(5px); }
.box-visual .box-content { justify-content: flex-end; }



/* Timeline Process Section */
.timeline-process {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #0d6efd 0%, #00d2ff 100%);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border: 3px solid #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0d6efd;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-icon {
    background: #0d6efd;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
}

.step-num {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.05);
    z-index: -1;
    line-height: 1;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1c3b;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-image-side {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    border: 1px solid rgba(13, 110, 253, 0.05);
}

.timeline-image-side img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image-side {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.timeline-item:hover .timeline-image-side img {
    transform: scale(1.05);
}

/* Pricing Grid */
.web-pricing {
    background-color: #f8fbff;
}
.pricing-header h2 {
    color: #0f172a;
    font-weight: 800;
}
.pricing-header p {
    color: #64748b;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.1);
    border-color: rgba(13,110,253,0.3);
}

.pricing-card.highlighted {
    background: #edf5ff;
    border: 1px solid #dbeafe;
}

.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.pricing-card__desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    min-height: 42px;
}

.pricing-card__price {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}
.pricing-card.highlighted .pricing-card__price {
    border-bottom: 1px solid #dbeafe;
}

.pricing-card__price span {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-card__features li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
}

.pricing-card__features li i {
    font-size: 18px;
    margin-top: 2px;
    transition: transform 0.3s;
}

.pricing-card:hover .pricing-card__features li i {
    transform: scale(1.2);
}

.pricing-card .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .btn-outline {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.pricing-card .btn-outline:hover {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13,110,253,0.2);
}

.pricing-card .btn-primary {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.pricing-card .btn-primary:hover {
    background: #0b5ed7;
    box-shadow: 0 10px 20px rgba(13,110,253,0.3);
    transform: translateY(-2px);
}

/* CTA Layout */
.cta-box-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    overflow: hidden;
    margin: 20px auto 0;
    max-width: 950px;
}

.cta-left {
    background: #0d6efd;
    padding: 40px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}

.cta-contact-item i {
    font-size: 20px;
    opacity: 0.9;
}

.cta-right {
    padding: 40px 50px;
}

.web-cta-form .form-control {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
}

.web-cta-form .wpcf7-submit {
    margin: 20px auto 0;
    display: block;
    min-width: 200px;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .web-hero__inner, .cta-box-layout {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .idea-grid {
        grid-template-columns: 1fr;
    }
    .idea-card.highlighted {
        margin-top: 0;
        margin-bottom: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.highlighted {
        padding: 40px 30px;
        transform: none;
    }
    .pricing-card:hover {
        transform: none;
    }
    .timeline-process::before {
        left: 35px;
    }
    .timeline-item, .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-end;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
    .timeline-icon {
        left: 35px;
    }
    .timeline-content {
        width: calc(100% - 90px);
    }
    .timeline-image-side {
        width: calc(100% - 90px);
        margin-bottom: 20px;
        order: -1;
    }
    .styles-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .styles-bento {
        grid-template-columns: 1fr;
    }
    .box-minimal, .box-flat, .box-dark, .box-asymmetric, .box-3d, .box-visual {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .hero-optin__inputs {
        flex-direction: column;
    }

    .web-intro-desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cta-left {
        padding: 40px 20px;
        text-align: center;
    }
    
    .cta-left h3 {
        font-size: 24px;
    }
    
    .cta-contact-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 auto;
        width: fit-content;
    }
    
    .cta-contact-item {
        justify-content: flex-start;
        font-size: 15px;
    }

    .cta-contact-item i {
        display: none;
    }
    
    .cta-right {
        padding: 30px 20px;
    }
}

/* CF7 Wrapper Fix for Inline Forms */
.optin-input .wpcf7-form-control-wrap {
    display: block;
    flex-grow: 1;
    width: 100%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    text-overflow: ellipsis;
}

