/* 
 * PT TEKNO CAKRA INOVASI - Homepage Styles
 * Main stylesheet for index.html
 */

/* Base Styles & CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables - Modern Tech Palette */
    --pttekno-primary: #2563EB;
    --pttekno-primary-dark: #1E40AF;
    --pttekno-secondary: #0EA5E9;
    --pttekno-accent: #10B981;
    --pttekno-dark: #0F172A;
    --pttekno-dark-surface: #1E293B;
    --pttekno-gray-dark: #334155;
    --pttekno-gray: #64748B;
    --pttekno-gray-light: #CBD5E1;
    --pttekno-light: #F1F5F9;
    --pttekno-white: #FFFFFF;
    
    /* Gradient Variables */
    --pttekno-gradient-primary: linear-gradient(135deg, var(--pttekno-primary) 0%, var(--pttekno-secondary) 100%);
    --pttekno-gradient-accent: linear-gradient(135deg, var(--pttekno-accent) 0%, var(--pttekno-secondary) 100%);
    --pttekno-gradient-dark: linear-gradient(135deg, var(--pttekno-dark) 0%, var(--pttekno-dark-surface) 100%);
    
    /* Typography Variables */
    --pttekno-font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --pttekno-font-headings: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing Variables */
    --pttekno-spacing-xs: 0.25rem;
    --pttekno-spacing-sm: 0.5rem;
    --pttekno-spacing-md: 1rem;
    --pttekno-spacing-lg: 1.5rem;
    --pttekno-spacing-xl: 2.5rem;
    --pttekno-spacing-xxl: 4rem;
    
    /* Border Radius */
    --pttekno-border-radius-sm: 4px;
    --pttekno-border-radius-md: 8px;
    --pttekno-border-radius-lg: 12px;
    --pttekno-border-radius-xl: 24px;
    --pttekno-border-radius-full: 9999px;
    
    /* Shadow Variables */
    --pttekno-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --pttekno-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --pttekno-shadow-lg: 0 8px 30px rgba(15, 23, 42, 0.1);
    --pttekno-shadow-highlight: 0 0 0 2px rgba(37, 99, 235, 0.1);
    
    /* Animation Variables */
    --pttekno-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --pttekno-transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--pttekno-font-main);
    color: var(--pttekno-gray-dark);
    line-height: 1.6;
    background-color: var(--pttekno-white);
    overflow-x: hidden;
    font-weight: 400;
}

/* Container */
.pttekno-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--pttekno-spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--pttekno-font-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--pttekno-spacing-md);
    color: var(--pttekno-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--pttekno-spacing-md);
}

a {
    color: var(--pttekno-primary);
    text-decoration: none;
    transition: color var(--pttekno-transition-fast);
}

a:hover {
    color: var(--pttekno-primary-dark);
}

/* Buttons */
.pttekno-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--pttekno-border-radius-full);
    transition: all var(--pttekno-transition-fast);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.pttekno-btn-primary {
    background: var(--pttekno-gradient-primary);
    color: var(--pttekno-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.pttekno-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.pttekno-btn-outline {
    background: transparent;
    color: var(--pttekno-primary);
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.pttekno-btn-outline:hover {
    border-color: var(--pttekno-primary);
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

/* Header Styles */
.pttekno-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--pttekno-shadow-sm);
    padding: 1rem 0;
    z-index: 1000;
    transition: all var(--pttekno-transition-fast);
}

.pttekno-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.pttekno-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.pttekno-nav-list {
    display: flex;
    list-style: none;
}

.pttekno-nav-item {
    margin-right: var(--pttekno-spacing-xl);
}

.pttekno-nav-item:last-child {
    margin-right: 0;
}

.pttekno-nav-item a {
    font-weight: 500;
    color: var(--pttekno-gray-dark);
    text-decoration: none;
    padding: var(--pttekno-spacing-sm) var(--pttekno-spacing-sm);
    border-radius: var(--pttekno-border-radius-sm);
    transition: all var(--pttekno-transition-fast);
    letter-spacing: 0.01em;
    font-size: 1.05rem;
    position: relative;
}

.pttekno-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--pttekno-primary);
    transition: all var(--pttekno-transition-fast);
    transform: translateX(-50%);
}

.pttekno-nav-item a:hover {
    color: var(--pttekno-primary);
}

.pttekno-nav-item a:hover::after,
.pttekno-nav-item.active a::after {
    width: 60%;
}

.pttekno-nav-item.active a {
    color: var(--pttekno-primary);
    font-weight: 600;
}

.pttekno-header-actions .pttekno-btn {
    padding: 0.6rem 1.5rem;
}

/* Hero Section */
.pttekno-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background-color: var(--pttekno-white);
}

.pttekno-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.pttekno-hero-text {
    flex: 1;
    padding-right: var(--pttekno-spacing-xl);
    max-width: 660px;
}

.pttekno-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--pttekno-spacing-md);
    position: relative;
}

.pttekno-hero-title span {
    display: block;
    color: var(--pttekno-primary);
    margin-top: 0.2em;
}

.pttekno-hero-subtitle {
    font-size: 1.25rem;
    color: var(--pttekno-gray);
    margin-bottom: var(--pttekno-spacing-xl);
    line-height: 1.6;
}

.pttekno-hero-buttons {
    display: flex;
    gap: var(--pttekno-spacing-md);
}

.pttekno-hero-image {
    flex: 1;
    text-align: right;
    position: relative;
}

.pttekno-hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 50%, transparent 70%);
    right: -100px;
    top: -100px;
    border-radius: 50%;
    z-index: -1;
}

.pttekno-hero-image::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
    left: -50px;
    bottom: -50px;
    border-radius: 50%;
    z-index: -1;
}

.pttekno-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pttekno-border-radius-lg);
    box-shadow: var(--pttekno-shadow-lg);
}

.pttekno-hero-stats {
    display: flex;
    margin-top: var(--pttekno-spacing-xl);
    gap: var(--pttekno-spacing-xl);
}

.pttekno-stat-item {
    text-align: center;
}

.pttekno-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pttekno-dark);
    margin-bottom: 0.25rem;
    display: block;
}

.pttekno-stat-label {
    font-size: 1rem;
    color: var(--pttekno-gray);
}

.pttekno-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Section Headers */
.pttekno-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--pttekno-spacing-xl);
    position: relative;
}

.pttekno-section-title {
    font-size: 2.5rem;
    margin-bottom: var(--pttekno-spacing-md);
    position: relative;
    display: inline-block;
}

.pttekno-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--pttekno-gradient-primary);
    border-radius: var(--pttekno-border-radius-full);
}

.pttekno-section-subtitle {
    font-size: 1.25rem;
    color: var(--pttekno-gray);
    max-width: 600px;
    margin: var(--pttekno-spacing-md) auto 0;
}

/* Services Section */
.pttekno-services {
    padding: var(--pttekno-spacing-xxl) 0;
    background-color: var(--pttekno-light);
    position: relative;
    overflow: hidden;
}

.pttekno-services::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.03) 50%, transparent 70%);
    right: -200px;
    top: -200px;
    border-radius: 50%;
}

.pttekno-services::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.03) 50%, transparent 70%);
    left: -150px;
    bottom: -150px;
    border-radius: 50%;
}

.pttekno-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pttekno-spacing-lg);
    position: relative;
    z-index: 2;
}

.pttekno-service-card {
    background-color: var(--pttekno-white);
    border-radius: var(--pttekno-border-radius-lg);
    padding: var(--pttekno-spacing-xl);
    box-shadow: var(--pttekno-shadow-md);
    transition: transform var(--pttekno-transition-medium), box-shadow var(--pttekno-transition-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.pttekno-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pttekno-gradient-primary);
    opacity: 0;
    transition: opacity var(--pttekno-transition-fast);
}

.pttekno-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pttekno-shadow-lg);
    border-color: transparent;
}

.pttekno-service-card:hover::before {
    opacity: 1;
}

.pttekno-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--pttekno-spacing-md);
    transition: transform var(--pttekno-transition-fast);
}

.pttekno-service-card:hover .pttekno-service-icon {
    transform: scale(1.05);
}

.pttekno-service-title {
    font-size: 1.5rem;
    margin-bottom: var(--pttekno-spacing-md);
    position: relative;
    display: inline-block;
}

.pttekno-service-description {
    color: var(--pttekno-gray);
    margin-bottom: var(--pttekno-spacing-lg);
    line-height: 1.7;
}

.pttekno-service-link {
    font-weight: 600;
    color: var(--pttekno-primary);
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all var(--pttekno-transition-fast);
}

.pttekno-service-link::after {
    content: '→';
    margin-left: 6px;
    transition: transform var(--pttekno-transition-fast);
}

.pttekno-service-link:hover::after {
    transform: translateX(4px);
}

/* Case Studies Section */
.pttekno-case-studies {
    padding: var(--pttekno-spacing-xxl) 0;
    background-color: var(--pttekno-white);
    position: relative;
}

.pttekno-case-studies-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pttekno-spacing-lg);
    margin-bottom: var(--pttekno-spacing-xl);
}

.pttekno-case-study {
    background-color: var(--pttekno-white);
    border-radius: var(--pttekno-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--pttekno-shadow-md);
    transition: transform var(--pttekno-transition-medium), box-shadow var(--pttekno-transition-medium);
    position: relative;
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.pttekno-case-study:hover {
    transform: translateY(-5px);
    box-shadow: var(--pttekno-shadow-lg);
    border-color: transparent;
}

.pttekno-case-study-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--pttekno-transition-medium);
}

.pttekno-case-study:hover .pttekno-case-study-image {
    transform: scale(1.03);
}

.pttekno-case-study-content {
    padding: var(--pttekno-spacing-lg);
    background-color: var(--pttekno-white);
    position: relative;
}

.pttekno-case-study-title {
    font-size: 1.25rem;
    margin-bottom: var(--pttekno-spacing-sm);
    color: var(--pttekno-dark);
}

.pttekno-case-study-description {
    color: var(--pttekno-gray);
    margin-bottom: var(--pttekno-spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pttekno-case-study-link {
    font-weight: 600;
    color: var(--pttekno-primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.pttekno-case-study-link::after {
    content: '→';
    margin-left: 6px;
    transition: transform var(--pttekno-transition-fast);
}

.pttekno-case-study-link:hover::after {
    transform: translateX(4px);
}

.pttekno-slider-controls {
    display: none;
}

/* Testimonials Section */
.pttekno-testimonials {
    padding: var(--pttekno-spacing-xxl) 0;
    background-color: var(--pttekno-light);
    position: relative;
    overflow: hidden;
}

.pttekno-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 5% 15%, rgba(37, 99, 235, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 95% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 35%);
    z-index: 1;
}

.pttekno-testimonials .pttekno-container {
    position: relative;
    z-index: 2;
}

.pttekno-testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pttekno-spacing-lg);
    margin-top: var(--pttekno-spacing-xl);
}

.pttekno-testimonial {
    background-color: var(--pttekno-white);
    border-radius: var(--pttekno-border-radius-lg);
    padding: var(--pttekno-spacing-xl);
    box-shadow: var(--pttekno-shadow-md);
    display: flex;
    align-items: flex-start;
    transition: transform var(--pttekno-transition-medium), box-shadow var(--pttekno-transition-medium);
    border: 1px solid rgba(203, 213, 225, 0.5);
    position: relative;
}

.pttekno-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--pttekno-shadow-lg);
    border-color: transparent;
}

.pttekno-testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--pttekno-spacing-lg);
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.pttekno-testimonial-content {
    flex: 1;
}

.pttekno-testimonial-text {
    font-style: italic;
    color: var(--pttekno-gray);
    margin-bottom: var(--pttekno-spacing-md);
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pttekno-testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.1);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
}

.pttekno-testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: var(--pttekno-dark);
}

.pttekno-testimonial-author p {
    color: var(--pttekno-gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.pttekno-carousel-indicators {
    display: none;
}

/* News Section */
.pttekno-news {
    padding: var(--pttekno-spacing-xxl) 0;
    background-color: var(--pttekno-white);
    position: relative;
}

.pttekno-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pttekno-spacing-xl);
}

.pttekno-news-card {
    border-radius: var(--pttekno-border-radius-lg);
    overflow: hidden;
    background-color: var(--pttekno-white);
    box-shadow: var(--pttekno-shadow-md);
    transition: transform var(--pttekno-transition-medium), box-shadow var(--pttekno-transition-medium);
    border: 1px solid rgba(203, 213, 225, 0.5);
    display: flex;
    flex-direction: column;
}

.pttekno-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pttekno-shadow-lg);
    border-color: transparent;
}

.pttekno-news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--pttekno-transition-medium);
}

.pttekno-news-card:hover .pttekno-news-image {
    transform: scale(1.03);
}

.pttekno-news-content {
    padding: var(--pttekno-spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pttekno-news-date {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--pttekno-primary);
    margin-bottom: var(--pttekno-spacing-sm);
    font-weight: 500;
}

.pttekno-news-title {
    font-size: 1.5rem;
    margin-bottom: var(--pttekno-spacing-sm);
    line-height: 1.4;
    color: var(--pttekno-dark);
}

.pttekno-news-excerpt {
    color: var(--pttekno-gray);
    margin-bottom: var(--pttekno-spacing-md);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.pttekno-news-link {
    font-weight: 600;
    color: var(--pttekno-primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.pttekno-news-link::after {
    content: '→';
    margin-left: 6px;
    transition: transform var(--pttekno-transition-fast);
}

.pttekno-news-link:hover::after {
    transform: translateX(4px);
}

/* Footer */
.pttekno-footer {
    background-color: var(--pttekno-dark);
    padding: var(--pttekno-spacing-xxl) 0 var(--pttekno-spacing-lg);
    color: var(--pttekno-white);
    position: relative;
    overflow: hidden;
}

.pttekno-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 30%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.pttekno-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--pttekno-spacing-xl);
    margin-bottom: var(--pttekno-spacing-xl);
    position: relative;
    z-index: 2;
}

.pttekno-footer-info {
    padding-right: var(--pttekno-spacing-lg);
}

.pttekno-footer-logo {
    margin-bottom: var(--pttekno-spacing-lg);
    opacity: 0.9;
}

.pttekno-footer-description {
    color: var(--pttekno-gray-light);
    margin-bottom: var(--pttekno-spacing-lg);
    line-height: 1.8;
    font-size: 0.95rem;
}

.pttekno-footer-social {
    display: flex;
    gap: var(--pttekno-spacing-md);
}

.pttekno-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all var(--pttekno-transition-fast);
}

.pttekno-social-link:hover {
    background-color: var(--pttekno-primary);
    transform: translateY(-3px);
}

.pttekno-social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.pttekno-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pttekno-spacing-lg);
}

.pttekno-footer-title {
    color: var(--pttekno-white);
    font-size: 1.125rem;
    margin-bottom: var(--pttekno-spacing-lg);
    position: relative;
    padding-bottom: var(--pttekno-spacing-sm);
}

.pttekno-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--pttekno-primary);
}

.pttekno-footer-menu {
    list-style: none;
}

.pttekno-footer-menu li {
    margin-bottom: var(--pttekno-spacing-sm);
}

.pttekno-footer-menu a {
    color: var(--pttekno-gray-light);
    transition: all var(--pttekno-transition-fast);
    display: inline-block;
    font-size: 0.95rem;
}

.pttekno-footer-menu a:hover {
    color: var(--pttekno-white);
    transform: translateX(5px);
}

.pttekno-footer-contact {
    list-style: none;
}

.pttekno-footer-contact li {
    margin-bottom: var(--pttekno-spacing-md);
    color: var(--pttekno-gray-light);
    font-size: 0.875rem;
    line-height: 1.8;
}

.pttekno-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--pttekno-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.pttekno-copyright {
    color: var(--pttekno-gray-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.pttekno-legal-links {
    display: flex;
    gap: var(--pttekno-spacing-lg);
}

.pttekno-legal-links a {
    color: var(--pttekno-gray-light);
    font-size: 0.875rem;
    transition: color var(--pttekno-transition-fast);
}

.pttekno-legal-links a:hover {
    color: var(--pttekno-white);
}

/* Media Queries */
@media (max-width: 1200px) {
    .pttekno-services-grid,
    .pttekno-case-studies-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1, .pttekno-hero-title {
        font-size: 3rem;
    }
    
    h2, .pttekno-section-title {
        font-size: 2.25rem;
    }
    
    .pttekno-hero-content {
        flex-direction: column;
    }
    
    .pttekno-hero-text {
        padding-right: 0;
        margin-bottom: var(--pttekno-spacing-xl);
        text-align: center;
        max-width: 100%;
    }
    
    .pttekno-hero-buttons {
        justify-content: center;
    }
    
    .pttekno-hero-stats {
        justify-content: center;
    }
    
    .pttekno-footer-content {
        grid-template-columns: 1fr;
    }
    
    .pttekno-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    h1, .pttekno-hero-title {
        font-size: 2.5rem;
    }
    
    h2, .pttekno-section-title {
        font-size: 2rem;
    }
    
    .pttekno-header-content {
        flex-direction: column;
        height: auto;
    }
    
    .pttekno-logo {
        margin-bottom: var(--pttekno-spacing-md);
    }
    
    .pttekno-nav {
        margin-bottom: var(--pttekno-spacing-md);
    }
    
    .pttekno-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pttekno-nav-item {
        margin: 0 var(--pttekno-spacing-xs);
        margin-bottom: var(--pttekno-spacing-xs);
    }
    
    .pttekno-services-grid,
    .pttekno-case-studies-slider,
    .pttekno-testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .pttekno-footer-links {
        grid-template-columns: 1fr;
    }
    
    .pttekno-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .pttekno-copyright {
        margin-bottom: var(--pttekno-spacing-md);
    }
}

@media (max-width: 576px) {
    .pttekno-hero-title {
        font-size: 2.25rem;
    }
    
    .pttekno-section-title {
        font-size: 1.75rem;
    }
    
    .pttekno-hero-buttons {
        flex-direction: column;
        gap: var(--pttekno-spacing-sm);
    }
} 